/* ═══════════════════════════════════════════
   VARIABLES & RESET
═══════════════════════════════════════════ */
:root {
  --wood-dark:   #6B4C2A;
  --wood:        #8B6340;
  --wood-light:  #A07850;   /* brun profond — section labels */
  --wood-pale:   #C8B89A;   /* parchemin chaud — accents discrets */
  --accent-dark: rgba(250,250,248,.70); /* blanc doux pour fonds sombres */
  --stone:       #F5F0E8;
  --stone-mid:   #E8E0D0;
  --stone-dark:  #9E9189;
  --dark:        #2C2420;
  --dark-mid:    #3D3530;
  --white:       #FAFAF8;
  --text:        #3D3530;
  --text-light:  #7A6E68;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', system-ui, sans-serif;

  --radius:      4px;
  --radius-lg:   12px;
  --shadow:      0 4px 24px rgba(44,36,32,.10);
  --shadow-lg:   0 12px 48px rgba(44,36,32,.18);
  --nav-h:       72px;
  --transition:  .35s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ═══════════════════════════════════════════
   HELPERS
═══════════════════════════════════════════ */
.container {
  width: min(1200px, 100% - 3rem);
  margin-inline: auto;
}
.section { padding: 6rem 0; }
.section__label {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--wood-light);
  margin-bottom: .75rem;
}
.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1rem;
}
.section__title--light { color: var(--white); }
.section__subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 56ch;
  line-height: 1.7;
}
.section__header {
  text-align: center;
  margin-bottom: 3rem;
}
.section__header .section__subtitle { margin: 0 auto; }

.ta-inline-link {
  display: inline-block;
  margin-top: .75rem;
  font-size: .82rem;
  letter-spacing: .05em;
  color: var(--wood);
  border-bottom: 1px solid rgba(139,99,64,.35);
  padding-bottom: 1px;
  transition: color var(--transition), border-color var(--transition);
}
.ta-inline-link:hover { color: var(--wood-dark); border-color: var(--wood-dark); }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .06em;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary { background: var(--wood); color: var(--white); box-shadow: 0 2px 12px rgba(107,76,42,.3); }
.btn--primary:hover { background: var(--wood-dark); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(107,76,42,.4); }
.btn--ghost {
  background: rgba(250,250,248,.12);
  color: var(--white);
  border: 1px solid rgba(250,250,248,.4);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(250,250,248,.22); border-color: rgba(250,250,248,.7); }
.btn--outline { border: 1.5px solid var(--wood); color: var(--wood); }
.btn--outline:hover { background: var(--wood); color: var(--white); }
.btn--outline-light { border: 1.5px solid rgba(250,250,248,.55); color: var(--white); }
.btn--outline-light:hover { background: rgba(250,250,248,.12); }

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(44,36,32,.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,.28);
}
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  max-width: 1300px;
  margin: 0 auto;
}
.nav__logo { display: flex; flex-direction: column; gap: 0; }
.nav__logo-main {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: .03em;
}
.nav__logo-sub {
  font-size: .62rem;
  font-weight: 400;
  color: rgba(250,250,248,.52);
  letter-spacing: .2em;
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: .1rem;
}
.nav__link {
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .05em;
  color: rgba(250,250,248,.75);
  padding: .4rem .6rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover { color: var(--white); background: rgba(255,255,255,.08); }
.nav__link--tel {
  display: flex;
  align-items: center;
  gap: .35rem;
  color: rgba(250,250,248,.85);
  font-weight: 500;
  padding: .4rem .75rem;
  border: 1px solid rgba(250,250,248,.28);
  border-radius: var(--radius);
  margin-left: .35rem;
}
.nav__link--tel:hover { background: rgba(250,250,248,.1); border-color: rgba(250,250,248,.6); color: var(--white); }
.nav__lang {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  color: rgba(250,250,248,.58);
  padding: .28rem .55rem;
  border: 1px solid rgba(250,250,248,.22);
  border-radius: 2px;
  transition: var(--transition);
  margin-left: .25rem;
}
.nav__lang:hover { color: var(--white); border-color: rgba(250,250,248,.55); }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 8s ease-out;
}
.hero__img.loaded { transform: scale(1); }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(44,36,32,.75) 0%, rgba(44,36,32,.42) 55%, rgba(44,36,32,.68) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 820px;
}
.hero__eyebrow {
  font-size: .72rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(250,250,248,.62);
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp .8s .2s forwards;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp .8s .4s forwards;
}
.hero__title em { font-style: italic; color: rgba(250,250,248,.78); }
.hero__tagline {
  font-size: clamp(.9rem, 1.5vw, 1.1rem);
  font-weight: 300;
  color: rgba(250,250,248,.82);
  max-width: 52ch;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp .8s .6s forwards;
}
/* ── Hero status badge ── */
.hero__status {
  display: flex;
  align-items: center;
  gap: .75rem;
  justify-content: center;
  min-height: 28px;
  margin-bottom: .75rem;
  opacity: 0;
  animation: fadeIn 1s .5s forwards;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .3rem .85rem;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.status-badge--open {
  background: rgba(76,175,80,.18);
  color: #81c784;
  border: 1px solid rgba(76,175,80,.4);
}
.status-badge--closed {
  background: rgba(200,60,60,.18);
  color: #e57373;
  border: 1px solid rgba(200,60,60,.35);
}
.status-badge--exceptional {
  background: rgba(255,152,0,.18);
  color: #ffb74d;
  border: 1px solid rgba(255,152,0,.4);
}
.status-badge--sm {
  padding: .18rem .55rem;
  font-size: .62rem;
  letter-spacing: .1em;
}
.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-badge--open .status-dot      { background: #81c784; box-shadow: 0 0 6px rgba(76,175,80,.6); animation: pulse 2s infinite; }
.status-badge--closed .status-dot    { background: #e57373; }
.status-badge--exceptional .status-dot { background: #ffb74d; }
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(76,175,80,.5); }
  50%      { box-shadow: 0 0 0 5px rgba(76,175,80,0); }
}
.status-hours {
  font-size: .78rem;
  color: rgba(250,250,248,.7);
  letter-spacing: .04em;
}

/* ── Hero actions layout ── */
.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp .8s .7s forwards;
}

/* ── Hero phone button ── */
.hero__tel-btn {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  background: rgba(250,250,248,.12);
  border: 2px solid rgba(250,250,248,.5);
  border-radius: 50px;
  padding: .85rem 2rem;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.hero__tel-btn:hover {
  background: rgba(250,250,248,.2);
  border-color: var(--white);
  transform: translateY(-2px);
}
.hero__tel-number {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  letter-spacing: .06em;
  line-height: 1;
}
.hero__tel-hint {
  font-size: .75rem;
  color: rgba(250,250,248,.5);
  letter-spacing: .06em;
  margin-top: .75rem;
  text-align: center;
  opacity: 0;
  animation: fadeIn 1s 1.1s forwards;
}

/* ── Nav status badge ── */
.nav__status-badge { display: flex; align-items: center; }

.hero__cta {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp .8s .8s forwards;
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1s 1.2s forwards;
}
.hero__scroll-line {
  display: block;
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, transparent, rgba(250,250,248,.65));
  animation: scrollPulse 2s 1.5s infinite;
}
@keyframes fadeUp { to { opacity: 1; transform: none; } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes scrollPulse {
  0%, 100% { opacity: .35; }
  50% { opacity: .9; }
}

/* ═══════════════════════════════════════════
   TÉLÉPHONE
═══════════════════════════════════════════ */
.telephone {
  background: var(--dark);
  border-top: 1px solid rgba(250,250,248,.08);
}
.telephone__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  text-align: center;
}
.telephone__label {
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(250,250,248,.48);
  margin-bottom: 1rem;
}
.telephone__number {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: .06em;
  transition: color var(--transition);
  line-height: 1;
  margin-bottom: .75rem;
}
.telephone__number svg { flex-shrink: 0; opacity: .7; }
.telephone__number:hover { color: var(--white); }
.telephone__hint {
  font-size: .8rem;
  color: rgba(250,250,248,.45);
  letter-spacing: .05em;
}

/* ═══════════════════════════════════════════
   MENU TABS
═══════════════════════════════════════════ */
.menu-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 1.75rem;
  border-bottom: 2px solid var(--stone-mid);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tab {
  flex-shrink: 0;
  padding: .7rem 1.5rem;
  font-family: var(--font-serif);
  font-size: .95rem;
  font-weight: 400;
  color: var(--text-light);
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
  letter-spacing: .02em;
}
.menu-tab:hover { color: var(--dark); }
.menu-tab.active {
  color: var(--wood);
  border-bottom-color: var(--wood);
  font-weight: 500;
}
@media (max-width: 768px) {
  .menu-tab { padding: .6rem 1rem; font-size: .88rem; }
}

/* ═══════════════════════════════════════════
   MENU
═══════════════════════════════════════════ */
.menu-section { background: var(--stone); }
.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.menu-card__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.menu-col {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--stone-mid);
}
.menu-col:last-child { border-right: none; }
.menu-col__title {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--wood-light);
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--stone-mid);
}
.menu-item { margin-bottom: 1.4rem; }
.menu-item__name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: .2rem;
}
.menu-item__desc {
  display: block;
  font-size: .82rem;
  color: var(--text-light);
  line-height: 1.5;
  font-style: italic;
}
.menu-card__footer {
  background: var(--stone);
  padding: 1rem 2rem;
  text-align: center;
  font-size: .78rem;
  color: var(--text-light);
  letter-spacing: .04em;
}

/* ═══════════════════════════════════════════
   MENU PHOTOS DU MOMENT
═══════════════════════════════════════════ */
.menu-photos {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--stone-mid);
}
.menu-photos__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 1.25rem;
}
.menu-photos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: .75rem;
}
.menu-photos__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  background: var(--stone-mid);
}
.menu-photos__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.menu-photos__item:hover img { transform: scale(1.05); }
.menu-photos__empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 2rem;
  color: var(--stone-dark);
  font-size: .85rem;
}
.menu-photos__empty span { font-size: 2rem; display: block; margin-bottom: .5rem; }

/* ═══════════════════════════════════════════
   HORAIRES — STATUT LIVE + FERMETURES EXCEPT.
═══════════════════════════════════════════ */
.horaires__live-status {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
  min-height: 28px;
}
.horaires__current-status {
  display: flex;
  align-items: center;
  gap: .65rem;
}
.horaires__exceptional {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.exc-title {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #ffb74d;
  margin-bottom: .5rem;
}
.exc-row {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  font-size: .8rem;
  color: rgba(250,250,248,.65);
  padding: .3rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.exc-row:last-child { border-bottom: none; }
.exc-date { text-transform: capitalize; }
.exc-label { color: rgba(255,152,0,.8); font-style: italic; }

/* ═══════════════════════════════════════════
   VINS
═══════════════════════════════════════════ */
.vins { background: var(--white); }
.vins__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.vins__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.vins__text p { color: var(--text-light); line-height: 1.75; margin-bottom: 1rem; }
.vins__liste { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .6rem; }
.vins__liste li {
  font-size: .9rem;
  color: var(--text-light);
  padding-left: 1.25rem;
  position: relative;
}
.vins__liste li::before {
  content: '';
  position: absolute; left: 0; top: .55em;
  width: 6px; height: 1px;
  background: var(--wood-light);
}

/* ═══════════════════════════════════════════
   ÉQUIPE
═══════════════════════════════════════════ */
.equipe { background: var(--stone); }
.equipe__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
.equipe__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.equipe__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.equipe__photo-wrap {
  overflow: hidden;
  aspect-ratio: 3/4;
}
.equipe__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform .5s ease;
}
.equipe__card:hover .equipe__photo { transform: scale(1.04); }
.equipe__info {
  padding: 1.5rem;
}
.equipe__name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: .15rem;
}
.equipe__role {
  display: block;
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--wood-light);
  margin-bottom: .75rem;
}
.equipe__bio {
  font-size: .85rem;
  color: var(--text-light);
  line-height: 1.65;
}
.equipe__hint {
  text-align: center;
  font-size: .78rem;
  color: var(--stone-dark);
  padding: .75rem 1rem;
  background: var(--stone-mid);
  border-radius: var(--radius);
}
.equipe__hint code {
  background: rgba(0,0,0,.08);
  padding: .1em .4em;
  border-radius: 3px;
  font-size: .9em;
}

/* ═══════════════════════════════════════════
   GALERIE + AVIS
═══════════════════════════════════════════ */
.galerie { background: var(--white); }

/* — Masonry — */
.galerie__masonry {
  columns: 3 240px;
  gap: .75rem;
  margin-bottom: 4rem;
}
.galerie__item {
  break-inside: avoid;
  margin-bottom: .75rem;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.galerie__item img {
  width: 100%;
  display: block;
  transition: transform .4s ease;
}
.galerie__item:hover img { transform: scale(1.04); }
.galerie__placeholder-wrap {
  break-inside: avoid;
  margin-bottom: .75rem;
}
.galerie__placeholder {
  aspect-ratio: 4/3;
  background: var(--stone-mid);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: var(--stone-dark);
  text-align: center;
  padding: 1.5rem;
}
.galerie__placeholder span { font-size: 2rem; }
.galerie__placeholder p { font-size: .8rem; line-height: 1.6; }
.galerie__placeholder code {
  background: rgba(0,0,0,.08);
  padding: .1em .4em;
  border-radius: 3px;
  font-size: .9em;
}

/* — Avis TripAdvisor — */
.avis {
  padding-top: 4rem;
  border-top: 1px solid var(--stone-mid);
}
.avis__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.avis__section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--dark);
}
.avis__ta-badge {}
.avis__ta-link {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: rgba(0,175,135,.06);
  border: 1px solid rgba(0,175,135,.2);
  padding: .6rem 1.1rem;
  border-radius: 50px;
  transition: var(--transition);
}
.avis__ta-link:hover { background: rgba(0,175,135,.12); border-color: rgba(0,175,135,.4); }
.avis__ta-icon { width: 34px; height: 34px; flex-shrink: 0; }
.avis__ta-name { display: block; font-size: .8rem; font-weight: 500; color: var(--dark); }
.avis__ta-stars { display: block; color: #FFB400; font-size: .82rem; letter-spacing: .05em; }
.avis__carousel { position: relative; overflow: hidden; margin-bottom: 2rem; }
.avis__track {
  display: flex;
  gap: 1.5rem;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.avis__card {
  flex: 0 0 calc(33.333% - 1rem);
  background: var(--stone);
  border: 1px solid var(--stone-mid);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.avis__card-top {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.avis__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--wood);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .05em;
  flex-shrink: 0;
}
/* Couleurs variées pour les avatars */
.avis__avatar--mc { background: #7B5EA7; }
.avis__avatar--fi { background: var(--wood); }
.avis__avatar--tk { background: #2E7D5E; }
.avis__avatar--sl { background: #C0564B; }
.avis__avatar--fb { background: #4A6FA5; }
.avis__avatar--jw { background: #7A6240; }
.avis__meta { flex: 1; min-width: 0; }
.avis__reviewer {
  display: block;
  font-size: .88rem;
  font-weight: 500;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.avis__date { display: block; font-size: .74rem; color: var(--text-light); }
.avis__stars { color: #FFB400; font-size: .85rem; flex-shrink: 0; }
.avis__text {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  flex: 1;
}
.avis__source {
  font-size: .72rem;
  color: var(--stone-dark);
  letter-spacing: .05em;
  border-bottom: 1px solid transparent;
  align-self: flex-start;
  transition: color .2s, border-color .2s;
}
.avis__source:hover { color: var(--wood); border-color: var(--wood); }
.avis__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.avis__btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--stone-mid);
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.avis__btn:hover { background: var(--stone); border-color: var(--wood-light); color: var(--wood); }
.avis__dots { display: flex; gap: .5rem; }
.avis__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--stone-mid);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.avis__dot--active { background: var(--wood-light); width: 20px; border-radius: 4px; }
.avis__cta { text-align: center; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  z-index: 2000;
  background: rgba(20,16,14,.92);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 90vw; max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: 0 20px 80px rgba(0,0,0,.5);
}
.lightbox__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: var(--white);
  font-size: 1.5rem;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.lightbox__close:hover { background: rgba(255,255,255,.2); }

/* ═══════════════════════════════════════════
   HORAIRES
═══════════════════════════════════════════ */
.horaires { position: relative; padding: 6rem 0; }
.horaires__bg {
  position: absolute; inset: 0;
  background: var(--dark);
  background-image:
    radial-gradient(ellipse at 15% 60%, rgba(107,76,42,.22) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 40%, rgba(250,250,248,.03) 0%, transparent 55%);
}
.horaires > .container { position: relative; }
.horaires__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.horaires__bloc {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.horaires__bloc:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(250,250,248,.18);
}
.horaires__bloc-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.horaires__rows { display: flex; flex-direction: column; gap: .6rem; }
.horaires__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: .85rem;
  color: rgba(250,250,248,.8);
  padding-bottom: .6rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.horaires__row:last-child { border-bottom: none; }
.horaires__row--closed { color: rgba(250,250,248,.4); }
.horaires__bloc--tel {
  background: rgba(107,76,42,.3);
  border-color: rgba(250,250,248,.12);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.horaires__bloc--tel p {
  font-size: .85rem;
  color: rgba(250,250,248,.7);
  line-height: 1.55;
}
.horaires__tel {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: .04em;
  transition: color .2s;
}
.horaires__tel:hover { color: rgba(250,250,248,.7); }
.horaires__note {
  font-size: .75rem !important;
  color: rgba(250,250,248,.4) !important;
  line-height: 1.5 !important;
}

/* ═══════════════════════════════════════════
   LOCALISATION
═══════════════════════════════════════════ */
.localisation { background: var(--stone); }
.localisation__grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3rem;
  align-items: start;
}
.localisation__infos { display: flex; flex-direction: column; gap: 1.75rem; }
.localisation__bloc h3 {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--wood-light);
  margin-bottom: .5rem;
}
.localisation__bloc address,
.localisation__bloc p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.65;
}
.localisation__bloc a { color: var(--wood); text-decoration: underline; text-underline-offset: 3px; }
.localisation__bloc a:hover { color: var(--wood-dark); }
.localisation__acces { display: flex; flex-direction: column; gap: .6rem; }
.localisation__acces li { font-size: .85rem; color: var(--text-light); line-height: 1.5; }
.localisation__social { display: flex; gap: .75rem; }
.localisation__social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 700;
  border: 1.5px solid;
  transition: var(--transition);
}
.localisation__social-btn--ta { border-color: #00AF87; color: #00AF87; }
.localisation__social-btn--ta:hover { background: #00AF87; color: #fff; }
.localisation__social-btn--ig { border-color: #C13584; color: #C13584; }
.localisation__social-btn--ig:hover { background: #C13584; color: #fff; }
.localisation__social-btn--fb { border-color: #1877F2; color: #1877F2; }
.localisation__social-btn--fb:hover { background: #1877F2; color: #fff; }
.localisation__map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); height: 420px; }
.localisation__map iframe { width: 100%; height: 100%; border: 0; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer { background: var(--dark); padding: 4rem 0 1.5rem; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: .5rem;
}
.footer__tagline {
  font-size: .8rem;
  color: rgba(250,250,248,.45);
  line-height: 1.7;
}
.footer__col h4 {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--wood-light);
  margin-bottom: 1rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer__col li a { font-size: .85rem; color: rgba(250,250,248,.55); transition: color .2s; }
.footer__col li a:hover { color: var(--white); }
.footer__col address { font-size: .85rem; color: rgba(250,250,248,.55); line-height: 1.65; }
.footer__tel-link {
  font-family: var(--font-serif);
  font-size: 1.05rem !important;
  color: var(--white) !important;
}
.footer__tel-link:hover { color: rgba(250,250,248,.65) !important; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 1.5rem;
  text-align: center;
  font-size: .75rem;
  color: rgba(250,250,248,.35);
}
.footer__bottom a { color: rgba(250,250,248,.5); }
.footer__bottom a:hover { color: var(--white); }

/* ═══════════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .vins__grid { gap: 3rem; }
  .menu-card__cols { grid-template-columns: 1fr 1fr; }
  .menu-col:nth-child(2) { border-right: none; }
  .menu-col:nth-child(3) { grid-column: span 2; border-top: 1px solid var(--stone-mid); border-right: none; }
  .equipe__grid { grid-template-columns: repeat(2, 1fr); }
  .horaires__grid { grid-template-columns: 1fr 1fr; }
  .horaires__bloc--tel { grid-column: span 2; }
  .avis__card { flex: 0 0 calc(50% - .75rem); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .section { padding: 4rem 0; }

  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(44,36,32,.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: .2rem;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .nav__links.open { display: flex; }
  .nav__link { font-size: .9rem; padding: .65rem .75rem; width: 100%; }
  .nav__link--tel { margin-left: 0; margin-top: .5rem; }
  .nav__burger { display: flex; }

  .vins__grid { grid-template-columns: 1fr; gap: 2rem; }
  .vins__visual { order: -1; }

  .menu-card__cols { grid-template-columns: 1fr; }
  .menu-col { border-right: none; border-bottom: 1px solid var(--stone-mid); }
  .menu-col:last-child { border-bottom: none; }
  .menu-col:nth-child(3) { grid-column: auto; border-top: none; }

  .equipe__grid { grid-template-columns: 1fr; }

  .avis__card { flex: 0 0 100%; }
  .avis__header { flex-direction: column; align-items: flex-start; gap: 1rem; }

  .horaires__grid { grid-template-columns: 1fr; }
  .horaires__bloc--tel { grid-column: auto; }

  .localisation__grid { grid-template-columns: 1fr; }
  .localisation__map { height: 280px; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }

  .galerie__masonry { columns: 2 160px; }
}

@media (max-width: 480px) {
  .container { width: calc(100% - 2rem); }
  .galerie__masonry { columns: 1; }
  .telephone__number { font-size: 2rem; }
}

/* ═══════════════════════════════════════════
   GALERIE — CRÉDIT PHOTO
═══════════════════════════════════════════ */
.galerie__item {
  position: relative;
}
.galerie__credit {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(20,16,14,.85) 0%, transparent 100%);
  padding: 1.5rem .75rem .6rem;
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.galerie__item:hover .galerie__credit { opacity: 1; }
.galerie__credit-caption {
  display: block;
  font-size: .75rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: .2rem;
}
.galerie__credit-author {
  display: flex;
  align-items: center;
  font-size: .65rem;
  color: rgba(250,250,248,.65);
  letter-spacing: .05em;
}
.galerie__credit-cat {
  color: rgba(250,250,248,.5);
  margin-left: .2rem;
}
/* Lightbox — crédit */
.lightbox__caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(250,250,248,.8);
  font-size: .8rem;
  max-width: 80vw;
}
.lightbox__caption-author {
  display: block;
  font-size: .7rem;
  color: rgba(250,250,248,.5);
  margin-top: .2rem;
}

/* ═══════════════════════════════════════════
   AVIS — VERSION ENRICHIE TRIPADVISOR
═══════════════════════════════════════════ */
.avis__avatar--photo {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--wood);
  display: flex; align-items: center; justify-content: center;
}
.avis__avatar-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.avis__avatar-fallback {
  font-size: .72rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .03em;
}
.avis__location {
  display: block;
  font-size: .72rem;
  color: var(--text-light);
  margin-top: .05rem;
}
.avis__stars-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .2rem;
  flex-shrink: 0;
}
.avis__stars {
  color: #FFB400;
  font-size: .9rem;
  letter-spacing: .05em;
  line-height: 1;
}
.stars-filled { color: #FFB400; }
.stars-empty  { color: rgba(200,180,100,.3); }
.avis__visit-type {
  font-size: .65rem;
  color: var(--stone-dark);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.avis__subcats {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  padding: .5rem 0;
  border-bottom: 1px solid var(--stone-mid);
}
.avis__subcat {
  font-size: .68rem;
  background: var(--stone-mid);
  padding: .15rem .5rem;
  border-radius: 20px;
  color: var(--text-light);
  white-space: nowrap;
}
.avis__source {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  color: var(--stone-dark);
  letter-spacing: .04em;
  transition: color .2s;
  border-bottom: 1px solid transparent;
  align-self: flex-start;
}
.avis__source:hover { color: #00AF87; border-color: #00AF87; }
.avis__source svg { flex-shrink: 0; }

/* ═══════════════════════════════════════════
   SÉLECTEUR DE LANGUE — DRAPEAUX
═══════════════════════════════════════════ */
#langSelectorWrap { position: relative; }

.lang-selector { position: relative; }

.lang-selector__current {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .35rem .65rem;
  border: 1px solid rgba(250,250,248,.25);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  color: rgba(250,250,248,.72);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  transition: var(--transition);
  white-space: nowrap;
}
.lang-selector__current:hover {
  border-color: rgba(250,250,248,.55);
  color: var(--white);
  background: rgba(250,250,248,.07);
}
.lang-flag { font-size: 1rem; line-height: 1; }
.lang-code { font-size: .72rem; }
.lang-chevron {
  transition: transform .2s;
  opacity: .7;
  flex-shrink: 0;
}
.lang-selector__current[aria-expanded="true"] .lang-chevron {
  transform: rotate(180deg);
}

.lang-selector__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + .5rem);
  right: 0;
  background: rgba(30,24,20,.97);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-width: 150px;
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
  backdrop-filter: blur(16px);
  z-index: 2000;
  list-style: none;
}
.lang-selector__dropdown.open { display: block; }

.lang-option {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem 1rem;
  cursor: pointer;
  transition: background .15s;
  color: rgba(250,250,248,.75);
  font-size: .85rem;
  outline: none;
}
.lang-option:hover,
.lang-option:focus { background: rgba(255,255,255,.07); color: var(--white); }
.lang-option.active {
  color: var(--white);
  background: rgba(250,250,248,.1);
}
.lang-option .lang-flag { font-size: 1.1rem; }
.lang-name { font-size: .82rem; }

/* Mobile nav: sélecteur visible dans le menu burger */
@media (max-width: 768px) {
  .lang-selector__dropdown {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    top: auto;
  }
}

/* ═══════════════════════════════════════════
   PRINT
═══════════════════════════════════════════ */
@media print {
  .nav, .hero__scroll, .telephone, .galerie,
  .horaires__bg, .localisation__social, .footer { display: none; }

  .hero { height: auto; min-height: auto; padding: 2rem; page-break-after: always; }
  .hero__overlay { background: rgba(0,0,0,.4); }
  .hero__content { color: #000; }
  .hero__title, .hero__tagline, .hero__eyebrow { color: #000; animation: none; opacity: 1; transform: none; }

  .menu-card { box-shadow: none; border: 1px solid #ccc; }
  .menu-card__cols { grid-template-columns: 1fr 1fr 1fr; }
  .menu-col:nth-child(3) { grid-column: auto; border-top: none; }

  .section { padding: 2rem 0; }
  * { box-shadow: none !important; }
  a[href]::after { content: none; }
}
