/* ══════════════════════════════════════════════════
   BRASSERIE CHEZ FRED — Style principal
   Concept : "Affiche de concert collée sur pierre romaine"
   ══════════════════════════════════════════════════ */

/* ── FONTS ── */
@font-face {
  font-family: 'Playfair Display';
  src: url('../assets/fonts/PlayfairDisplay-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('../assets/fonts/PlayfairDisplay-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('../assets/fonts/PlayfairDisplay-BlackItalic.woff2') format('woff2');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/Inter-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ── VARIABLES ── */
:root {
  --bordeaux: #6B1D2A;
  --bordeaux-light: #8B2D3A;
  --charbon: #1A1A1A;
  --charbon-soft: #2A2A2A;
  --creme: #F5F0E8;
  --creme-dark: #E8E0D4;
  --ambre: #D4A853;
  --ambre-light: #E8C476;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --nav-height: 64px;
  --container-width: 1200px;
  --section-padding: clamp(4rem, 10vw, 8rem);

  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--bordeaux), var(--ambre), var(--bordeaux-light));
  z-index: 10001;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(212, 168, 83, 0.5);
}

/* ── RESET ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--charbon);
  background-color: var(--creme);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
address { font-style: normal; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

/* ══════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 168, 83, 0.15);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.navbar--scrolled {
  background: rgba(26, 26, 26, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.navbar__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.navbar__logo {
  font-family: var(--font-serif);
  font-weight: 900;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--ambre);
  white-space: nowrap;
  letter-spacing: -0.02em;
  transition: transform 0.3s var(--ease-spring);
}
.navbar__logo:hover {
  transform: scale(1.05);
  text-shadow: 0 0 20px rgba(212, 168, 83, 0.4);
}
.navbar__links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.navbar__links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--creme);
  opacity: 0.7;
  transition: opacity 0.3s ease, color 0.3s ease;
  white-space: nowrap;
  position: relative;
}
.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--ambre);
  transition: width 0.3s var(--ease-out-expo);
}
.navbar__links a:hover { opacity: 1; color: var(--ambre); }
.navbar__links a:hover::after { width: 100%; }

.navbar__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.navbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.25rem;
  background: var(--ambre);
  color: var(--charbon);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 8px;
  letter-spacing: 0.02em;
  transition: all 0.3s var(--ease-spring);
  white-space: nowrap;
}
.navbar__cta:hover {
  background: var(--creme);
  color: var(--charbon);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 168, 83, 0.35);
}
.navbar__cta svg {
  flex-shrink: 0;
}
.navbar__socials {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.navbar__socials a {
  color: var(--creme);
  opacity: 0.6;
  transition: opacity 0.3s ease, transform 0.3s var(--ease-spring), color 0.3s ease;
}
.navbar__socials a:hover {
  opacity: 1;
  transform: scale(1.15);
  color: var(--ambre);
}

/* ══════════════════════════════════════════════════
   PHONE MODAL
   ══════════════════════════════════════════════════ */
.phone-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.phone-modal.active {
  opacity: 1;
  visibility: visible;
}
.phone-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.phone-modal__card {
  position: relative;
  background: var(--charbon);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: 20px;
  padding: 2.5rem 3rem;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s var(--ease-out-expo);
  max-width: 360px;
  width: 90%;
}
.phone-modal.active .phone-modal__card {
  transform: scale(1) translateY(0);
}
.phone-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(245, 240, 232, 0.1);
  background: transparent;
  color: var(--creme);
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.phone-modal__close:hover {
  opacity: 1;
  background: rgba(245, 240, 232, 0.08);
  transform: rotate(90deg);
}
.phone-modal__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ambre), var(--bordeaux));
  color: white;
  margin-bottom: 1.25rem;
}
.phone-modal__number {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  font-weight: 900;
  color: var(--creme);
  letter-spacing: 0.04em;
  margin-bottom: 1.75rem;
}
.phone-modal__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}
.phone-modal__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--ease-spring);
}
.phone-modal__btn--copy {
  background: rgba(245, 240, 232, 0.08);
  border: 1px solid rgba(245, 240, 232, 0.15);
  color: var(--creme);
}
.phone-modal__btn--copy:hover {
  background: rgba(245, 240, 232, 0.14);
  border-color: var(--ambre);
  transform: translateY(-2px);
}
.phone-modal__btn--copy.copied {
  background: rgba(76, 175, 80, 0.15);
  border-color: #4caf50;
  color: #4caf50;
}
.phone-modal__btn--call {
  background: var(--ambre);
  color: var(--charbon);
}
.phone-modal__btn--call:hover {
  background: var(--creme);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 168, 83, 0.3);
}

/* Mobile toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}
.navbar__toggle span {
  width: 24px;
  height: 2px;
  background: var(--creme);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.navbar__toggle.active {
  display: none;
}

/* Close button hidden on desktop */
.navbar__close-li {
  display: none;
}
/* Mobile CTA & socials hidden on desktop */
.navbar__mobile-cta,
.navbar__mobile-socials {
  display: none;
}

@media (max-width: 900px) {
  .navbar__right {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-left: auto;
  }
  .navbar__right .navbar__socials { display: none; }
  .navbar__right .navbar__cta {
    padding: 0.45rem 0.9rem;
    font-size: 0.78rem;
  }
  .navbar__toggle {
    display: flex;
  }
  .navbar__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background: var(--charbon);
    flex-direction: column;
    padding: 2rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.4s var(--ease-out-expo);
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
    z-index: 1001;
    overflow-y: auto;
  }
  .navbar__links.open { right: 0; }
  .navbar__links a { font-size: 1.1rem; opacity: 0.9; }
  /* Mobile CTA inside menu */
  .navbar__mobile-cta {
    display: block;
    list-style: none;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 168, 83, 0.12);
  }
  .navbar__cta--mobile {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
  }
  /* Mobile socials inside menu */
  .navbar__mobile-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
    list-style: none;
    padding-bottom: 1rem;
  }
  .navbar__mobile-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(245, 240, 232, 0.06);
    border: 1px solid rgba(212, 168, 83, 0.15);
    color: var(--creme);
    opacity: 0.7;
    transition: all 0.3s var(--ease-spring);
  }
  .navbar__mobile-socials a:hover {
    opacity: 1;
    background: rgba(212, 168, 83, 0.15);
    color: var(--ambre);
    border-color: var(--ambre);
    transform: translateY(-2px);
  }
  .navbar__close-li {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    margin-bottom: 0.5rem;
  }
  .navbar__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(212, 168, 83, 0.25);
    background: rgba(245, 240, 232, 0.06);
    color: var(--creme);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .navbar__close:hover {
    background: rgba(212, 168, 83, 0.15);
    border-color: var(--ambre);
    color: var(--ambre);
    transform: rotate(90deg);
  }
}

/* Mobile menu backdrop */
.navbar__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.navbar__backdrop.active {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 900px) {
  .navbar__backdrop { display: block; }
}

/* Active nav link */
.navbar__links a.active {
  opacity: 1;
  color: var(--ambre);
}
.navbar__links a.active::after {
  width: 100%;
}

/* ══════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--charbon);
}

/* Hero background photo */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.5) saturate(1.2);
  animation: kenBurns 25s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1%, -1%); }
}


.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(107, 29, 42, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(212, 168, 83, 0.15) 0%, transparent 50%),
    linear-gradient(180deg, rgba(26, 26, 26, 0.3) 0%, rgba(26, 26, 26, 0.6) 100%);
}

/* Grain texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.6;
}

.hero__content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 700px;
}
.hero__badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ambre);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.8s var(--ease-out-expo) 0.5s forwards;
}
.hero__title {
  font-family: var(--font-serif);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(3.5rem, 12vw, 8rem);
  line-height: 0.9;
  color: var(--creme);
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  animation: heroTitleIn 1s var(--ease-out-expo) 0.7s forwards, titleGlow 4s ease-in-out 2s infinite;
}
@keyframes titleGlow {
  0%, 100% { text-shadow: 0 4px 30px rgba(107, 29, 42, 0.5); }
  50% { text-shadow: 0 4px 40px rgba(107, 29, 42, 0.7), 0 0 80px rgba(212, 168, 83, 0.15); }
}
.hero__subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: var(--creme);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.8s var(--ease-out-expo) 1s forwards;
  margin-bottom: 2.5rem;
}
.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.8s var(--ease-out-expo) 1.2s forwards;
}
.hero__hint {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ambre);
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease-out-expo) 1.5s forwards;
}
.hero__hint-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ambre);
  animation: pulse 2s ease-in-out infinite;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: var(--creme);
  opacity: 0;
  animation: scrollIndicatorIn 0.8s var(--ease-out-expo) 2s forwards, scrollBounce 2s ease-in-out 2.8s infinite;
}
@keyframes scrollIndicatorIn {
  to { opacity: 0.4; transform: translateX(-50%); }
}

@keyframes fadeSlideUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroTitleIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ══════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s var(--ease-spring);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn:hover::before { opacity: 1; }

.btn--primary {
  background: var(--bordeaux);
  color: var(--creme);
  border: 2px solid var(--bordeaux);
}
.btn--primary:hover {
  background: var(--bordeaux-light);
  border-color: var(--bordeaux-light);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 35px rgba(107, 29, 42, 0.5), 0 0 20px rgba(107, 29, 42, 0.2);
}
.btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(107, 29, 42, 0.3);
}

.btn--secondary {
  background: transparent;
  color: var(--creme);
  border: 2px solid rgba(245, 240, 232, 0.4);
}
.btn--secondary:hover {
  border-color: var(--ambre);
  color: var(--ambre);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 35px rgba(212, 168, 83, 0.2), 0 0 20px rgba(212, 168, 83, 0.1);
}

.btn--outline {
  background: transparent;
  color: var(--bordeaux);
  border: 2px solid var(--bordeaux);
}
.btn--outline:hover {
  background: var(--bordeaux);
  color: var(--creme);
  transform: translateY(-2px);
}

.btn--glow {
  animation: btnGlow 3s ease-in-out infinite;
}
@keyframes btnGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(212, 168, 83, 0); }
  50% { box-shadow: 0 0 30px rgba(212, 168, 83, 0.3), 0 0 60px rgba(212, 168, 83, 0.1); }
}

/* ══════════════════════════════════════════════════
   SECTIONS COMMON
   ══════════════════════════════════════════════════ */
.section {
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}
.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ambre);
  margin-bottom: 0.75rem;
  background: linear-gradient(90deg, var(--ambre) 0%, var(--ambre-light) 40%, #fff 50%, var(--ambre-light) 60%, var(--ambre) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0% { background-position: 100% 50%; }
  100% { background-position: -100% 50%; }
}
.section__label--center { display: block; text-align: center; }
.section__title {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--charbon);
  margin-bottom: 2rem;
}
.section__title--center { text-align: center; }

/* Mosaic pattern decorative */
.mosaic-pattern {
  position: absolute;
  width: 200px;
  height: 200px;
  opacity: 0.04;
  background-image:
    linear-gradient(45deg, var(--ambre) 25%, transparent 25%),
    linear-gradient(-45deg, var(--ambre) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--ambre) 75%),
    linear-gradient(-45deg, transparent 75%, var(--ambre) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  pointer-events: none;
}
.mosaic-pattern--right { right: -40px; top: 50%; transform: translateY(-50%) rotate(15deg); }
.mosaic-pattern--left { left: -40px; top: 50%; transform: translateY(-50%) rotate(-15deg); }

/* Reveal animations */
.reveal-left, .reveal-right, .reveal-up {
  opacity: 0;
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo), filter 0.9s ease;
  filter: blur(4px);
}
.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }
.reveal-up { transform: translateY(50px); transition-delay: calc(var(--stagger, 0) * 120ms); }
.reveal-left.visible, .reveal-right.visible, .reveal-up.visible {
  opacity: 1;
  transform: translate(0);
  filter: blur(0);
}

/* ══════════════════════════════════════════════════
   BRASSERIE
   ══════════════════════════════════════════════════ */
.section--brasserie {
  background: var(--creme);
}
.brasserie__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.brasserie__text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--charbon-soft);
  margin-bottom: 1rem;
}
.brasserie__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.tag {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 100px;
  background: rgba(107, 29, 42, 0.08);
  color: var(--bordeaux);
  transition: all 0.3s var(--ease-spring);
}
.tag:hover {
  background: var(--bordeaux);
  color: var(--creme);
  transform: scale(1.05);
}

.brasserie__image-frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 12px;
  overflow: hidden;
}
.brasserie__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--ease-out);
}
.brasserie__image-frame:hover .brasserie__image {
  transform: scale(1.05);
}
.brasserie__image-accent {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 60%;
  height: 60%;
  border: 3px solid var(--ambre);
  border-radius: 12px;
  opacity: 0.3;
  z-index: -1;
}

@media (max-width: 768px) {
  .brasserie__grid { grid-template-columns: 1fr; }
  .brasserie__visual { order: -1; }
}

/* ══════════════════════════════════════════════════
   LA CARTE
   ══════════════════════════════════════════════════ */
.section--carte {
  background: var(--charbon);
  color: var(--creme);
}
.section--carte .section__label { color: var(--ambre); }
.section--carte .section__title { color: var(--creme); }

.carte__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.carte__card {
  position: relative;
  background: var(--charbon-soft);
  border: 1px solid rgba(212, 168, 83, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
  overflow: hidden;
  transition: all 0.4s var(--ease-spring);
  transform-style: preserve-3d;
  will-change: transform;
}
.carte__card:hover {
  border-color: rgba(212, 168, 83, 0.3);
  transform: translateY(-6px) rotateX(2deg) rotateY(-1deg);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 168, 83, 0.08);
}
.carte__card--large {
  grid-column: span 2;
}
.carte__card--highlight {
  background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux-light));
  border-color: var(--bordeaux);
}
.carte__card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.carte__card-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.carte__card-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.7;
}
.carte__card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ambre), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}
.carte__card:hover .carte__card-accent {
  transform: scaleX(1);
}

/* Carte photos gallery */
.carte__photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.carte__photo-item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
}
.carte__photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo), filter 0.7s ease;
  filter: brightness(0.8) saturate(1.1);
}
.carte__photo-item:hover img {
  transform: scale(1.12);
  filter: brightness(1.05) saturate(1.3);
}
.carte__photo-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26, 26, 26, 0.4) 100%);
  pointer-events: none;
}
@media (max-width: 600px) {
  .carte__photos { grid-template-columns: 1fr 1fr; }
  .carte__photo-item:last-child { display: none; }
}

.carte__apero {
  text-align: center;
  padding: 2rem;
  background: rgba(212, 168, 83, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(212, 168, 83, 0.1);
}
.carte__apero h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.carte__apero p {
  font-size: 0.95rem;
  opacity: 0.7;
}

@media (max-width: 600px) {
  .carte__card--large { grid-column: span 1; }
}

/* ══════════════════════════════════════════════════
   VENDREDI — POSTER STYLE
   ══════════════════════════════════════════════════ */
.section--vendredi {
  background: var(--charbon);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.vendredi__bg-parallax {
  position: absolute;
  inset: -20%;
  will-change: transform;
  overflow: hidden;
}
.vendredi__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.25) saturate(1.3) blur(2px);
}
.vendredi__bg-parallax::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(107, 29, 42, 0.4) 0%, rgba(26, 26, 26, 0.7) 70%);
}
.vendredi__poster {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  perspective: 800px;
}
.vendredi__poster-inner {
  position: relative;
  background: linear-gradient(160deg, var(--creme), var(--creme-dark));
  color: var(--charbon);
  padding: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
  border-radius: 4px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 2px 4px rgba(0, 0, 0, 0.2),
    inset 0 0 100px rgba(212, 168, 83, 0.05);
  transform: rotate(-1deg);
  transition: transform 0.6s var(--ease-spring);
}
.vendredi__poster:hover .vendredi__poster-inner {
  transform: rotate(0.5deg) scale(1.03);
  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.6),
    0 2px 4px rgba(0, 0, 0, 0.2),
    inset 0 0 100px rgba(212, 168, 83, 0.08),
    0 0 60px rgba(212, 168, 83, 0.1);
}
.vendredi__poster-when {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--bordeaux);
  margin-bottom: 1rem;
  padding: 0.3rem 1rem;
  border: 2px solid var(--bordeaux);
  border-radius: 100px;
}
.vendredi__poster-title {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(2.5rem, 8vw, 4rem);
  line-height: 0.95;
  color: var(--charbon);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}
.vendredi__poster-line {
  width: 60px;
  height: 3px;
  background: var(--ambre);
  margin: 0 auto 1.5rem;
}
.vendredi__poster-desc {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.vendredi__poster-sub {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-bottom: 2rem;
}

/* Paper tear effect */
.vendredi__poster-tear {
  position: absolute;
  top: 0;
  width: 30px;
  height: 100%;
  pointer-events: none;
}
.vendredi__poster-tear--left {
  left: -2px;
  background: linear-gradient(to right,
    var(--charbon) 0%,
    var(--charbon) 20%,
    transparent 20%,
    transparent 40%,
    var(--charbon) 40%,
    var(--charbon) 50%,
    transparent 50%
  );
  background-size: 6px 15px;
  opacity: 0.15;
}
.vendredi__poster-tear--right {
  right: -2px;
  background: linear-gradient(to left,
    var(--charbon) 0%,
    var(--charbon) 20%,
    transparent 20%,
    transparent 40%,
    var(--charbon) 40%,
    var(--charbon) 50%,
    transparent 50%
  );
  background-size: 6px 15px;
  opacity: 0.15;
}

/* ══════════════════════════════════════════════════
   PRODUITS D'ICI
   ══════════════════════════════════════════════════ */
.section--produits {
  background: var(--creme);
}
.produits__hero {
  width: 100%;
  max-height: 400px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  position: relative;
}
.produits__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.6s var(--ease-out);
}
.produits__hero:hover img {
  transform: scale(1.03);
}
.produits__hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(245, 240, 232, 0.6) 100%);
  pointer-events: none;
}
.produits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.produit-tag {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: white;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s var(--ease-spring);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}
.produit-tag:hover {
  transform: translateY(-4px) rotate(-1deg);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
  border-color: var(--ambre);
}
.produit-tag:hover .produit-tag__icon {
  transform: scale(1.2) rotate(5deg);
  transition: transform 0.4s var(--ease-spring);
}
.produit-tag__icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.produit-tag__text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charbon);
}
.produit-tag__text span {
  font-size: 0.82rem;
  color: var(--charbon-soft);
  opacity: 0.7;
}

/* ══════════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════════ */
.section--services {
  background: linear-gradient(180deg, var(--creme) 0%, white 100%);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.service-item {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 12px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.35s var(--ease-spring);
  position: relative;
  overflow: hidden;
}
.service-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(212, 168, 83, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-item:hover::after { opacity: 1; }
.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
  border-color: var(--ambre);
}
.service-item__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--bordeaux);
  transition: transform 0.3s var(--ease-spring);
}
.service-item:hover .service-item__icon {
  transform: scale(1.15) rotate(5deg);
}
.service-item__icon svg {
  width: 100%;
  height: 100%;
}
.service-item h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}
.service-item p {
  font-size: 0.82rem;
  opacity: 0.6;
}

.services__payment {
  text-align: center;
  padding: 1.5rem;
  background: rgba(212, 168, 83, 0.06);
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--charbon-soft);
}
@media (max-width: 768px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .services__grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════
   SET DE TABLE VIVANT
   ══════════════════════════════════════════════════ */
.section--settable {
  background: var(--charbon);
  color: var(--creme);
}
.section--settable .section__title { color: var(--creme); }

.settable__zone {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  background:
    repeating-linear-gradient(0deg, rgba(212, 168, 83, 0.03) 0px, rgba(212, 168, 83, 0.03) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, rgba(212, 168, 83, 0.03) 0px, rgba(212, 168, 83, 0.03) 1px, transparent 1px, transparent 40px);
  border: 1px solid rgba(212, 168, 83, 0.1);
  overflow: hidden;
  cursor: none;
  user-select: none;
  -webkit-user-select: none;
}
.settable__word {
  position: absolute;
  left: calc(var(--x) * 1%);
  top: calc(var(--y) * 1%);
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(1rem, 3vw, 1.8rem);
  color: var(--creme);
  opacity: 0.08;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s var(--ease-spring), color 0.4s ease;
  transform: translate(-50%, -50%);
  animation: wordFloat var(--float-duration, 6s) ease-in-out infinite alternate;
  --float-duration: calc(5s + var(--x, 50) * 0.05s);
}
@keyframes wordFloat {
  0% { transform: translate(-50%, -50%) translateY(0px) rotate(0deg); }
  33% { transform: translate(-50%, -50%) translateY(-6px) rotate(0.5deg); }
  66% { transform: translate(-50%, -50%) translateY(4px) rotate(-0.5deg); }
  100% { transform: translate(-50%, -50%) translateY(-3px) rotate(0.3deg); }
}
.settable__word.active {
  opacity: 0.9;
  color: var(--ambre);
  transform: translate(-50%, -50%) scale(1.2);
  text-shadow: 0 0 40px rgba(212, 168, 83, 0.4);
}
.settable__cursor {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.15) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: left 0.1s ease, top 0.1s ease;
  display: none;
}

@media (max-width: 768px) {
  .settable__zone { aspect-ratio: 4/3; }
}

/* ══════════════════════════════════════════════════
   AVIS
   ══════════════════════════════════════════════════ */
.section--avis {
  background: var(--creme);
}
.avis__ambiance {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
  border-radius: 12px;
  overflow: hidden;
  max-height: 280px;
}
.avis__ambiance img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
  border-radius: 12px;
}
.avis__ambiance img:last-child {
  object-position: center 30%;
}
.avis__ambiance img:hover {
  transform: scale(1.04);
}
@media (max-width: 600px) {
  .avis__ambiance { grid-template-columns: 1fr; max-height: none; }
  .avis__ambiance img:last-child { display: none; }
}
.avis__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.avis__card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.4s var(--ease-spring);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.avis__card::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  right: 1.5rem;
  font-family: var(--font-serif);
  font-size: 6rem;
  font-weight: 900;
  color: var(--ambre);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
}
.avis__card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--ambre), var(--bordeaux));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.avis__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: rgba(212, 168, 83, 0.25);
}
.avis__card:hover::after {
  opacity: 1;
}
.avis__stars {
  color: var(--ambre);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.avis__star--empty {
  opacity: 0.25;
}
.avis__card p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--charbon-soft);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  flex: 1;
  font-style: italic;
}
.avis__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.avis__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ambre), var(--bordeaux));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-serif);
  flex-shrink: 0;
}
.avis__info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.avis__name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charbon);
}
.avis__source {
  font-size: 0.72rem;
  color: var(--charbon-soft);
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@media (max-width: 600px) {
  .avis__grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════ */
.section--contact {
  padding: var(--section-padding) 0;
  background: var(--charbon);
  color: var(--creme);
}

/* Header */
.contact__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  padding: 0 1.5rem;
}
.contact__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ambre);
  margin-bottom: 1rem;
}
.contact__title {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.contact__subtitle {
  font-size: 1.05rem;
  opacity: 0.6;
  line-height: 1.6;
}

/* Grid: cards + map */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0;
  max-width: var(--container-width);
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: var(--charbon-soft);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
}

/* Cards column */
.contact__cards {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  gap: 0;
}

/* Individual card */
.contact__card {
  display: flex;
  gap: 1.25rem;
  padding: clamp(1.2rem, 2vw, 1.5rem) 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}
.contact__card:first-child {
  padding-top: 0;
}
.contact__card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact__card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 168, 83, 0.1);
  border-radius: 12px;
  color: var(--ambre);
  transition: background 0.3s ease, transform 0.3s var(--ease-spring);
}
.contact__card:hover .contact__card-icon {
  background: rgba(212, 168, 83, 0.18);
  transform: scale(1.05);
}

.contact__card-body {
  flex: 1;
  min-width: 0;
}
.contact__card-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--creme);
}
.contact__card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
}
.contact__card-text strong {
  color: var(--ambre-light);
  font-weight: 600;
}
.contact__card-hint {
  font-size: 0.8rem;
  opacity: 0.5;
  margin-top: 0.3rem;
}
.contact__card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ambre);
  margin-top: 0.6rem;
  transition: gap 0.3s ease, color 0.3s ease;
}
.contact__card-link:hover {
  gap: 0.6rem;
  color: var(--ambre-light);
}

.contact__card-phone {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--creme);
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}
.contact__card-phone:hover {
  color: var(--ambre);
}

.contact__card-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

/* Small button variant */
.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  gap: 0.4rem;
}

/* Outline buttons in contact */
.contact__card-actions .btn--outline {
  color: var(--creme);
  border-color: rgba(245, 240, 232, 0.25);
}
.contact__card-actions .btn--outline:hover {
  background: var(--creme);
  color: var(--charbon);
  border-color: var(--creme);
}

/* Map */
.contact__map {
  position: relative;
  min-height: 480px;
  background: var(--charbon);
  overflow: hidden;
}
.contact__map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: saturate(0.5) brightness(0.8) contrast(1.1);
  transition: filter 0.5s ease;
}
.contact__map:hover .contact__map-iframe {
  filter: saturate(0.9) brightness(0.95) contrast(1.05);
}

/* ── Contact responsive ── */
@media (max-width: 900px) {
  .contact__grid {
    grid-template-columns: 1fr;
    margin: 0 1rem;
  }
  .contact__map {
    min-height: 300px;
  }
}
@media (max-width: 480px) {
  .contact__card {
    gap: 1rem;
  }
  .contact__card-icon {
    width: 40px;
    height: 40px;
  }
  .contact__card-icon svg {
    width: 20px;
    height: 20px;
  }
  .contact__card-phone {
    font-size: 1.05rem;
  }
  .contact__grid {
    margin: 0 0.75rem;
    border-radius: 12px;
  }
}

/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
.footer {
  background: #141414;
  color: var(--creme);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  position: relative;
}

/* Top: brand + columns */
.footer__top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
  margin-bottom: 0;
}

/* Brand col */
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer__logo {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--creme);
  margin-bottom: 0.25rem;
}
.footer__tagline {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ambre);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.footer__desc {
  font-size: 0.88rem;
  line-height: 1.7;
  opacity: 0.5;
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.footer__socials {
  display: flex;
  gap: 0.6rem;
}
.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(245, 240, 232, 0.06);
  color: var(--creme);
  opacity: 0.7;
  transition: all 0.3s var(--ease-spring);
}
.footer__socials a:hover {
  opacity: 1;
  background: rgba(212, 168, 83, 0.15);
  color: var(--ambre);
  transform: translateY(-2px);
}

/* Columns */
.footer__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.footer__heading {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ambre);
  margin-bottom: 1.25rem;
  opacity: 0.8;
}

/* Navigation links */
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer__nav a {
  font-size: 0.88rem;
  opacity: 0.55;
  transition: opacity 0.3s ease, color 0.3s ease, padding-left 0.3s ease;
}
.footer__nav a:hover {
  opacity: 1;
  color: var(--creme);
  padding-left: 0.25rem;
}

/* Schedule rows */
.footer__schedule {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.05);
}
.footer__schedule-row:last-child {
  border-bottom: none;
}
.footer__schedule-day {
  opacity: 0.55;
}
.footer__schedule-time {
  font-weight: 600;
  opacity: 0.8;
}
.footer__schedule-row--closed .footer__schedule-time {
  color: rgba(245, 240, 232, 0.35);
  font-weight: 400;
}
.footer__schedule-note {
  font-size: 0.78rem;
  opacity: 0.4;
  margin-top: 0.6rem;
  font-style: italic;
}

/* Address & phone */
.footer__address {
  font-size: 0.88rem;
  line-height: 1.7;
  opacity: 0.55;
  margin-bottom: 1rem;
}
.footer__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--creme);
  opacity: 0.75;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.footer__phone:hover {
  opacity: 1;
  color: var(--ambre);
}
.footer__phone svg {
  opacity: 0.6;
}

/* Divider */
.footer__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 83, 0.15) 20%, rgba(212, 168, 83, 0.15) 80%, transparent);
  margin: clamp(2rem, 4vw, 3rem) 0;
}

/* Bottom bar */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy {
  font-size: 0.78rem;
  opacity: 0.3;
}
.footer__links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer__links a {
  font-size: 0.78rem;
  opacity: 0.4;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.footer__links a:hover {
  opacity: 1;
  color: var(--ambre);
}
.footer__links-sep {
  font-size: 0.7rem;
  opacity: 0.2;
}

/* ── Footer responsive ── */
@media (max-width: 900px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer__brand {
    text-align: center;
    align-items: center;
  }
  .footer__desc {
    max-width: 100%;
  }
  /* Nav horizontale */
  .footer__col--nav .footer__heading {
    text-align: center;
  }
  .footer__nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
  }
  .footer__nav li {
    list-style: none;
  }
  .footer__nav a {
    display: inline-block;
    padding: 0.45rem 0.9rem;
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: 20px;
    font-size: 0.82rem;
    opacity: 0.7;
    transition: all 0.3s ease;
  }
  .footer__nav a:hover {
    opacity: 1;
    background: rgba(212, 168, 83, 0.12);
    border-color: var(--ambre);
    padding-left: 0.9rem;
  }
  /* Boxes horaires & contact */
  .footer__col--horaires,
  .footer__col--contact {
    background: rgba(245, 240, 232, 0.04);
    border: 1px solid rgba(212, 168, 83, 0.12);
    border-radius: 14px;
    padding: 1.5rem;
  }
  .footer__col--horaires .footer__heading,
  .footer__col--contact .footer__heading {
    text-align: center;
  }
  .footer__col--contact {
    text-align: center;
  }
  .footer__col--contact .footer__address {
    margin-bottom: 0.75rem;
  }
  .footer__col--contact .footer__phone {
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }
  .footer__links {
    order: -1;
  }
}

/* Easter egg */
.footer__easter {
  cursor: pointer;
  opacity: 0.3;
  transition: all 0.3s ease;
  padding: 8px;
}
.footer__easter:hover {
  opacity: 0.6;
  transform: rotate(15deg);
}

.easter-reveal {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.6s var(--ease-spring);
}
.easter-reveal.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.easter-reveal__content {
  background: var(--charbon);
  border: 1px solid var(--ambre);
  border-radius: 12px;
  padding: 1.5rem 2.5rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.easter-reveal__bridge {
  width: 150px;
  height: 75px;
  display: block;
  margin: 0 auto 0.5rem;
}
.easter-reveal__text {
  font-family: var(--font-serif);
  font-weight: 900;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ambre);
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════════════
   OVERLAY
   ══════════════════════════════════════════════════ */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.overlay.active {
  pointer-events: auto;
  opacity: 1;
}
.overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.92);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}
.overlay__content {
  position: relative;
  max-width: 460px;
  width: 90%;
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.5s var(--ease-spring);
  background: var(--charbon-soft);
  border-radius: 16px;
  border: 1px solid rgba(212, 168, 83, 0.15);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}
.overlay.active .overlay__content {
  transform: scale(1) translateY(0);
}
.overlay__close {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 2rem;
  color: var(--creme);
  opacity: 0.5;
  transition: all 0.3s ease;
  padding: 0.5rem;
  line-height: 1;
}
.overlay__close:hover {
  opacity: 1;
  transform: rotate(90deg);
}
.overlay__title {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--creme);
  margin-bottom: 0.5rem;
}
.overlay__desc {
  font-size: 0.95rem;
  color: var(--creme);
  opacity: 0.6;
  margin-bottom: 2rem;
}
.overlay__phones {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.overlay__phone-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.overlay__phone-number {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  color: var(--ambre);
  letter-spacing: 0.02em;
}
.overlay__copy {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(212, 168, 83, 0.15);
  color: var(--ambre);
  border-radius: 6px;
  border: 1px solid rgba(212, 168, 83, 0.3);
  transition: all 0.3s var(--ease-spring);
}
.overlay__copy:hover {
  background: var(--ambre);
  color: var(--charbon);
  transform: scale(1.05);
}
.overlay__copy.copied {
  background: #2d8a4e;
  border-color: #2d8a4e;
  color: white;
}
.overlay__hours {
  font-size: 0.85rem;
  color: var(--creme);
  opacity: 0.4;
}

/* ══════════════════════════════════════════════════
   SCROLLBAR
   ══════════════════════════════════════════════════ */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--charbon);
}
::-webkit-scrollbar-thumb {
  background: var(--bordeaux);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--bordeaux-light);
}

/* ══════════════════════════════════════════════════
   SELECTION
   ══════════════════════════════════════════════════ */
::selection {
  background: var(--bordeaux);
  color: var(--creme);
}

/* ══════════════════════════════════════════════════
   FOCUS STYLES (Accessibility)
   ══════════════════════════════════════════════════ */
*:focus-visible {
  outline: 2px solid var(--ambre);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible {
  outline-offset: 4px;
  box-shadow: 0 0 0 4px rgba(212, 168, 83, 0.3);
}
.navbar__links a:focus-visible {
  outline-color: var(--ambre);
  outline-offset: 6px;
}

/* ══════════════════════════════════════════════════
   OVERLAY PHONE LINK STYLE
   ══════════════════════════════════════════════════ */
a.overlay__phone-number {
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
a.overlay__phone-number:hover {
  color: var(--ambre-light);
  text-shadow: 0 0 20px rgba(212, 168, 83, 0.3);
}

/* ══════════════════════════════════════════════════
   LOADING ANIMATION
   ══════════════════════════════════════════════════ */
body.loading {
  overflow: hidden;
}

/* Page load fade-in */
body {
  animation: pageLoad 0.6s ease-out;
}
@keyframes pageLoad {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ══════════════════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
