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

:root {
  --black: #1A1A1A;
  --dark: #333333;
  --mid: #555550;
  --muted: #888880;
  --light: #C8C4BC;
  --gray: #F2F2F2;
  --cream: #EBEBEB;
  --white: #FFFFFF;
  --gold: #DCB233;
  --gold-dk: #C49E20;

  --serif: 'Playfair Display', Georgia, serif;
  --book: 'Libre Baskerville', Georgia, serif;
  --caps: 'Josefin Sans', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--book);
  line-height: 1.7;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: var(--gray);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 2px solid var(--black);
  background: var(--white);
  transition: background .3s;
}

nav.scrolled {
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(6px);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  text-decoration: none;
}

.nav-logo-main {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1;
}

.nav-logo-sub {
  font-family: var(--caps);
  font-size: .52rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-center img {
  opacity: .15;
  width: auto;
  display: block;
  height: 200px;
  /* assez grand pour que le couteau soit visible */
  margin-top: -100px;
  /* tire vers le haut pour ne pas pousser la nav */
  margin-bottom: -100px;
  /* compense l'espace pris par l'image pour que la nav reste centrée */
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--caps);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color .25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -.3rem;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.burger {
  display: none;
  background: none;
  border: 2px solid var(--black);
  padding: .4rem .5rem;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--black);
  transition: background .2s;
}

.burger:hover span {
  background: var(--gold);
}

/* ─── HERO ─── */
#accueil {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  background: var(--white);
}

.ornament-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 580px;
  margin: 0 auto 1.2rem;
}

.ornament-line::before,
.ornament-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--black);
}

.ornament-line span {
  font-family: var(--caps);
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.hero-eyebrow {
  font-family: var(--caps);
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp .7s .2s forwards;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: .95;
  color: var(--black);
  margin-bottom: .5rem;
  opacity: 0;
  animation: fadeUp .8s .35s forwards;
}

.hero-title-italic {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5.5vw, 5rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: .02em;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp .8s .5s forwards;
}

.hero-logo {
  width: 29vw;
  min-width: min(420px, 80vw);
  margin: 0 auto 1.5rem;
  display: block;
  opacity: 0;
  animation: fadeIn 1s .35s forwards;
  margin: -5% auto;
  /* compense le padding transparent du canvas */
}


.hero-since {
  font-family: var(--caps);
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 1rem auto 2rem;
  opacity: 0;
  animation: fadeUp .7s .8s forwards;
}

.hero-desc {
  max-width: 54ch;
  font-size: .95rem;
  color: var(--mid);
  line-height: 1.9;
  margin: 0 auto 3rem;
  opacity: 0;
  animation: fadeUp .8s .95s forwards;
}

.hero-cta {
  display: inline-block;
  font-family: var(--caps);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--white);
  background: var(--black);
  text-decoration: none;
  padding: 1rem 2.5rem;
  border: 2px solid var(--black);
  transition: background .3s, color .3s, border-color .3s;
  opacity: 0;
  animation: fadeUp .7s 1.1s forwards;
}

.hero-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.hero-stats {
  display: flex;
  margin-top: 4rem;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  width: 100%;
  max-width: 700px;
  opacity: 0;
  animation: fadeIn .8s 1.2s forwards;
}

.hero-stat {
  flex: 1;
  padding: 1.4rem 1rem;
  border-right: 1px solid var(--black);
  text-align: center;
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  display: block;
  color: var(--black);
}

.hero-stat-label {
  font-family: var(--caps);
  font-size: .55rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-top: .4rem;
}

/* ─── TICKER / SEPARATOR ─── */
.sep {
  background: var(--black);
  padding: 1.1rem 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  gap: 0;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.sep-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}

.sep-item {
  font-family: var(--caps);
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
  opacity: .75;
  padding: 0 2rem;
}

.sep-dot {
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
  padding: 0 .5rem;
  opacity: .8;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ─── SECTION TAGS ─── */
.section-tag {
  font-family: var(--caps);
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.5rem;
}

.section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

/* ─── ARTISANAT ─── */
/*#artisanat {*/
/*  padding: clamp(5rem, 9vw, 9rem) 2.5rem;*/
/*  background: var(--cream);*/
/*}*/

/*.artisanat-inner {*/
/*  max-width: 1240px;*/
/*  margin: 0 auto;*/
/*}*/

/*.artisanat-header {*/
/*  text-align: center;*/
/*  margin-bottom: 4rem;*/
/*}*/

/*.artisanat-h2 {*/
/*  font-family: var(--serif);*/
/*  font-size: clamp(2rem, 4vw, 3.2rem);*/
/*  font-weight: 900;*/
/*  text-transform: uppercase;*/
/*  line-height: 1.05;*/
/*  margin-bottom: .3rem;*/
/*}*/

/*.artisanat-h2-italic {*/
/*  font-family: var(--serif);*/
/*  font-size: clamp(1.3rem, 2.5vw, 2rem);*/
/*  font-style: italic;*/
/*  font-weight: 700;*/
/*  color: var(--gold);*/
/*  margin-bottom: 0;*/
/*}*/

/*.artisanat-grid {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));*/
/*  gap: 2px;*/
/*  background: var(--black);*/
/*  border: 2px solid var(--black);*/
/*  margin-bottom: 4rem;*/
/*}*/

/*.artisanat-card {*/
/*  background: var(--white);*/
/*  padding: 2.5rem 2rem;*/
/*  transition: background .3s;*/
/*}*/

/*.artisanat-card:hover {*/
/*  background: var(--gray);*/
/*}*/

/*.artisanat-card-num {*/
/*  font-family: var(--serif);*/
/*  font-size: 3rem;*/
/*  font-weight: 900;*/
/*  line-height: 1;*/
/*  color: var(--gold);*/
/*  opacity: .4;*/
/*  display: block;*/
/*  margin-bottom: 1rem;*/
/*}*/

/*.artisanat-card-title {*/
/*  font-family: var(--serif);*/
/*  font-size: 1.15rem;*/
/*  font-weight: 900;*/
/*  text-transform: uppercase;*/
/*  margin-bottom: .8rem;*/
/*  line-height: 1.1;*/
/*  color: var(--black);*/
/*}*/

/*.artisanat-card-text {*/
/*  font-size: .88rem;*/
/*  color: var(--mid);*/
/*  line-height: 1.85;*/
/*}*/

/*.artisanat-quote {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 2rem;*/
/*  max-width: 800px;*/
/*  margin: 0 auto;*/
/*}*/

/*.artisanat-quote-line {*/
/*  flex: 1;*/
/*  height: 1px;*/
/*  background: var(--black);*/
/*}*/

/*.artisanat-quote p {*/
/*  font-family: var(--serif);*/
/*  font-size: clamp(.95rem, 1.5vw, 1.15rem);*/
/*  font-style: italic;*/
/*  font-weight: 700;*/
/*  color: var(--dark);*/
/*  text-align: center;*/
/*  white-space: nowrap;*/
/*}*/

/*@media (max-width: 700px) {*/
/*  .artisanat-quote {*/
/*    flex-direction: column;*/
/*    gap: 1rem;*/
/*  }*/

/*  .artisanat-quote p {*/
/*    white-space: normal;*/
/*  }*/

/*  .artisanat-quote-line {*/
/*    width: 40px;*/
/*    height: 1px;*/
/*    flex: none;*/
/*  }*/
/*}*/

/* ─── VISION ─── */
#vision {
  padding: clamp(5rem, 9vw, 9rem) 2.5rem;
  background: var(--white);
}

.histoire-left a {
  color: var(--gold);
  text-decoration: none;
}


/* ─── HISTOIRE ─── */
#histoire {
  padding: clamp(5rem, 9vw, 9rem) 2.5rem;
  background: var(--white);
}

.histoire-intro {
  max-width: 1240px;
  margin: 0 auto 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

.histoire-h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: .02em;
  margin-bottom: .3rem;
}

.histoire-h2-italic {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 2rem;
}

.histoire-left p {
  font-size: .93rem;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 1.1rem;
}

.histoire-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 2rem;
}

.tag {
  font-family: var(--caps);
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .5rem 1rem;
  border: 1.5px solid var(--black);
  color: var(--dark);
  font-weight: 600;
  transition: background .2s, color .2s, border-color .2s;
}

.tag:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.blockquote-box {
  border: 2px solid var(--black);
  padding: 2.5rem 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.blockquote-box::before {
  content: '"';
  font-family: var(--serif);
  font-size: 6rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  position: absolute;
  top: -.5rem;
  left: 1rem;
  opacity: .15;
}

.blockquote-box blockquote {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.65;
  color: var(--dark);
}

.histoire-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1.5px solid var(--black);
}

.histoire-pillar {
  padding: 1.6rem 1.4rem;
  border-right: 1.5px solid var(--black);
  border-bottom: 1.5px solid var(--black);
  transition: background .25s;
}

.histoire-pillar:nth-child(2n) {
  border-right: none;
}

.histoire-pillar:nth-child(3),
.histoire-pillar:nth-child(4) {
  border-bottom: none;
}

.histoire-pillar:hover {
  background: var(--gray);
}

.pillar-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  display: block;
  margin-bottom: .3rem;
  color: var(--gold);
}

.pillar-label {
  font-family: var(--caps);
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Photos histoire : ancien / nouveau local */
.histoire-photos {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.histoire-photo-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.histoire-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.histoire-photo-wrap:hover img {
  transform: scale(1.04);
}

.photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(26, 26, 26, .82));
  padding: 1.5rem 1.4rem .9rem;
  font-family: var(--caps);
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
}

.photo-caption span {
  color: var(--gold);
  margin-right: .5rem;
}

/* ─── ÉQUIPE ─── */
.equipe-section {
  background: var(--black);
  padding: clamp(4rem, 7vw, 7rem) 2.5rem;
}

.equipe-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 5vw, 6rem);
  align-items: center;
}

.equipe-text .section-tag {
  color: rgba(200, 196, 188, .5);
}

.equipe-text .section-tag::before {
  background: var(--gold);
}

.equipe-h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: .3rem;
}

.equipe-text .equipe-h2-italic {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 2rem;
}

.equipe-text p {
  font-size: .92rem;
  color: rgba(244, 240, 232, .6);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.equipe-photo-wrap {
  position: relative;
  overflow: hidden;
  border: 3px solid var(--gold);
}

.equipe-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.equipe-photo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(220, 178, 51, .1) 0%, transparent 60%);
  pointer-events: none;
}

/* ─── QUALITÉ / LABELS ─── */
#qualite {
  padding: clamp(5rem, 9vw, 9rem) 2.5rem;
  background: var(--gray);
}

.qualite-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.qualite-header {
  text-align: center;
  margin-bottom: 4rem;
}

.qualite-h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: .3rem;
}

.qualite-h2-italic {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.qualite-intro {
  max-width: 60ch;
  margin: 0 auto;
  font-size: .92rem;
  color: var(--mid);
  line-height: 1.9;
}

.labels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  background: var(--black);
  border: 2px solid var(--black);
}

.label-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  transition: background .3s;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  display: block;
}

.label-card:hover {
  background: var(--cream);
}

.label-card:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -3px;
}

.label-card-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1.2rem;
  transition: transform .3s;
}

.label-card:hover .label-card-icon {
  transform: scale(1.1);
}

.label-card-category {
  font-family: var(--caps);
  font-size: .55rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
  display: block;
}

.label-card-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: .7rem;
  line-height: 1.1;
}

.label-card-text {
  font-size: .85rem;
  color: var(--mid);
  line-height: 1.8;
}

.label-card-logo {
  height: 100px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  margin-bottom: 1.2rem;
  display: block;
  margin-inline: auto
}

/* ─── DARK BAND ─── */
.dark-band {
  background: var(--dark);
  padding: clamp(3rem, 6vw, 5rem) 2.5rem;
}

.dark-band-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.dark-item {
  padding: 2.5rem;
  border-right: 1px solid rgba(255, 255, 255, .08);
  text-align: center;
}

.dark-item:last-child {
  border-right: none;
}

.dark-item-icon {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  display: block;
  color: var(--gold);
  font-variant-emoji: text;
  font-family: Georgia, "Times New Roman", serif;
}

.dark-item-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  font-style: italic;
  color: var(--cream);
  margin-bottom: .7rem;
}

.dark-item-title span {
  color: var(--gold);
}

.dark-item-text {
  font-family: var(--caps);
  font-size: .7rem;
  letter-spacing: .08em;
  color: rgba(244, 240, 232, .4);
  line-height: 1.8;
}

/* ─── CONTACT ─── */
#contact {
  padding: clamp(5rem, 9vw, 9rem) 2.5rem;
  background: var(--white);
}

.contact-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

.contact-h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: .3rem;
}

.contact-h2-italic {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 2.5rem;
}

.contact-row {
  display: flex;
  gap: 1.5rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.contact-row:first-of-type {
  border-top: 1px solid rgba(0, 0, 0, .1);
}

.contact-row-label {
  font-family: var(--caps);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 70px;
  padding-top: .15rem;
}

.contact-row-value {
  font-size: .92rem;
  color: var(--dark);
  line-height: 1.7;
}

.contact-row-value a {
  color: var(--dark);
  text-decoration: none;
  transition: color .2s;
}

.contact-row-value a:hover {
  color: var(--gold);
}

.map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  padding: 1.1rem 2rem;
  font-family: var(--caps);
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  border: 2px solid var(--black);
  transition: background .3s, color .3s, border-color .3s;
}

.map-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.horaires-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.horaires-title::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--gold);
}

.horaires-table {
  width: 100%;
  border-collapse: collapse;
}

.horaires-table tr {
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.horaires-table tr:last-child {
  border-bottom: none;
}

.horaires-table td {
  padding: .7rem 0;
  font-size: .88rem;
  color: var(--dark);
}

.horaires-table td:first-child {
  font-family: var(--caps);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  width: 40%;
  color: var(--black);
}

.horaires-table td.closed {
  font-style: italic;
  color: var(--muted);
}

.horaires-table tr.today td {
  color: var(--gold);
  font-weight: 700;
}

.note-horaires {
  margin-top: 1.4rem;
  font-family: var(--caps);
  font-size: .62rem;
  letter-spacing: .1em;
  color: var(--muted);
  line-height: 1.8;
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
}

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  color: var(--light);
  padding: 2rem 2.5rem;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-logo-wrap {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.footer-logo-main {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
}

.footer-logo-sub {
  font-family: var(--caps);
  font-size: .52rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(200, 196, 188, .4);
}

.footer-copy {
  font-family: var(--caps);
  font-size: .58rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(200, 196, 188, .35);
}

.footer-gold {
  color: var(--gold);
  opacity: .3;
}

.footer-link {
  color: rgba(200, 196, 188, .4);
  text-decoration: none;
  transition: color .2s;
}

.footer-link:hover {
  color: var(--gold);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(11, 10, 9, .88);
}

.image-lightbox.open {
  display: flex;
}

.image-lightbox-img,
.image-lightbox-video {
  max-width: min(1100px, 100%);
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .45);
}

.image-lightbox-video {
  display: none;
}

.image-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .28);
  background: var(--black);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.image-lightbox-close:hover,
.image-lightbox-close:focus-visible {
  background: var(--gold);
  color: var(--black);
  outline: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {

  .histoire-intro,
  .equipe-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .histoire-photos {
    grid-template-columns: 1fr;
  }

  .dark-band-inner {
    grid-template-columns: 1fr;
  }

  .dark-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .dark-item:last-child {
    border-bottom: none;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: var(--white);
    justify-content: center;
    align-items: center;
    z-index: 99;
    overflow-y: auto;
    padding-top: 70px; /* pousse le contenu sous la navbar */
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links.open a {
    font-size: .9rem;
    padding: 1.2rem;
  }

  .nav-center {
    display: none;
  }

  .burger {
    display: flex;
    position: relative;
    z-index: 101;
  }
}

@media (max-width: 560px) {
  .labels-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid var(--black);
    border-right: none;
    border-bottom: none;
  }

  .hero-stat {
    flex: none;
    border-right: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
  }

  .hero-stat:last-child {
    border-right: 1px solid var(--black);
  }
}