/* =============================================================
   Le Lion d'Or - Thème sur mesure
   Design : Bistro Noir Raffiné, inspiré Salient
   Typographie : Cormorant Garamond + DM Sans
   ============================================================= */

/* ---------------------------------------------------------------
   Variables
--------------------------------------------------------------- */
:root {
  --bg-deep:      #0f0c09;
  --bg-dark:      #141009;
  --bg-mid:       #1c1610;
  --bg-card:      #231a0e;
  --bg-card-hover:#2a2012;
  --gold:         #c8a050;
  --gold-light:   #e0be7a;
  --gold-dim:     #7a5e2a;
  --cream:        #f2ead6;
  --cream-dim:    #c4b99a;
  --muted:        #7a6d5a;
  --border:       #2e2416;
  --border-light: #3e3020;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --radius:       4px;
  --radius-lg:    8px;
  --transition:   0.3s ease;

  --nav-h:        72px;
  --section-py:   6rem;
  --container:    1280px;
  --container-sm: 900px;
}

/* ---------------------------------------------------------------
   Reset & base
--------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg-deep);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
strong { font-weight: 500; }

/* ---------------------------------------------------------------
   Typography
--------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--cream);
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 400; }
h4 { font-size: 1.1rem; font-weight: 500; font-family: var(--font-body); letter-spacing: 0.03em; }

em { font-style: italic; color: var(--gold); }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------------
   Container
--------------------------------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}
.container--narrow {
  max-width: var(--container-sm);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---------------------------------------------------------------
   Buttons
--------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--bg-deep);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--bg-deep);
}
.btn--outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(242,234,214,0.4);
}
.btn--outline:hover {
  background: rgba(242,234,214,0.08);
  border-color: var(--cream);
  color: var(--cream);
}
.btn--outline-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(242,234,214,0.35);
}
.btn--outline-light:hover {
  background: rgba(242,234,214,0.1);
  border-color: var(--cream);
  color: var(--cream);
}
.btn--dark {
  background: var(--bg-deep);
  color: var(--cream);
  border-color: var(--bg-deep);
}
.btn--dark:hover {
  background: var(--bg-mid);
  color: var(--cream);
}
.btn--outline-dark {
  background: transparent;
  color: var(--bg-deep);
  border-color: rgba(15,12,9,0.3);
}
.btn--outline-dark:hover {
  background: rgba(15,12,9,0.08);
  border-color: var(--bg-deep);
  color: var(--bg-deep);
}
.btn--full { width: 100%; justify-content: center; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.link-arrow::after {
  content: '→';
  transition: transform var(--transition);
}
.link-arrow:hover { color: var(--gold-light); }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------------------------------------------------------------
   Header / Navigation
--------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(14,11,8,0.96);
  box-shadow: 0 1px 0 var(--border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
}

/* Logo */
.site-header__logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--cream);
  flex-shrink: 0;
}
.site-header__logo:hover { color: var(--gold-light); }

.site-header__logo-letter {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
}
.site-header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.site-header__logo-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--cream);
}
.site-header__logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Nav */
.site-nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.site-nav__list li a {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242,234,214,0.75);
  transition: color var(--transition);
  text-decoration: none;
}
.site-nav__list li a:hover,
.site-nav__list li.active a { color: var(--cream); }

.site-nav__cta {
  padding: 0.5rem 1.25rem !important;
  border: 1.5px solid var(--gold) !important;
  border-radius: var(--radius);
  color: var(--gold) !important;
  letter-spacing: 0.1em;
}
.site-nav__cta:hover {
  background: var(--gold) !important;
  color: var(--bg-deep) !important;
}

/* Burger */
.site-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.site-header__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}
.site-header__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.site-header__burger.is-open span:nth-child(2) { opacity: 0; }
.site-header__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay */
.site-header__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

/* ---------------------------------------------------------------
   Sections
--------------------------------------------------------------- */
.section {
  padding: var(--section-py) 0;
}
.section--dark  { background: var(--bg-dark); }
.section--mid   { background: var(--bg-mid); }
.section--light { background: var(--bg-card); }

.section--gold-band {
  background: linear-gradient(135deg, #2a1e08 0%, #1a1409 40%, #231a0e 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.section--gold-stripe {
  background: var(--gold);
}
.section--cta-band {
  text-align: center;
  padding: 5rem 0;
}

/* Section headers */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header--left { text-align: left; }

.section-header__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-header__title {
  margin-bottom: 1rem;
}
.section-header__desc {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--cream-dim);
  font-size: 1.05rem;
}
.section-header--left .section-header__desc { margin-left: 0; }

.section-cta { text-align: center; margin-top: 3rem; }

/* ---------------------------------------------------------------
   Hero (Homepage)
--------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero__bg { transform: scale(1.08); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,8,5,0.5) 0%,
    rgba(10,8,5,0.65) 50%,
    rgba(10,8,5,0.8) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 860px;
}
.hero__eyebrow {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero__title {
  margin-bottom: 1.5rem;
  line-height: 1.05;
}
.hero__title-plain {
  display: block;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 0.3rem;
}
.hero__title-italic {
  display: block;
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  line-height: 0.95;
}
.hero__subtitle {
  font-size: 1.05rem;
  color: var(--cream-dim);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__meta {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(242,234,214,0.5);
}
.hero__meta a { color: inherit; }

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 2;
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---------------------------------------------------------------
   Weekly Menu Cards
--------------------------------------------------------------- */
.weekly-menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.weekly-card {
  background: var(--bg-card);
  padding: 2.5rem;
  transition: background var(--transition);
}
.weekly-card:hover { background: var(--bg-card-hover); }
.weekly-card__label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.weekly-card__title {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}
.weekly-card__desc { color: var(--cream-dim); font-size: 0.95rem; }
.weekly-card__tag {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--gold-dim);
  color: var(--gold-dim);
  border-radius: 2px;
}

.menu-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--cream-dim);
  font-size: 0.95rem;
}

/* ---------------------------------------------------------------
   Gallery Grid (Homepage)
--------------------------------------------------------------- */
.gallery-section { padding-top: var(--section-py); padding-bottom: 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px;
  gap: 4px;
  margin-top: 3rem;
}
.gallery-grid__item {
  overflow: hidden;
  background: var(--bg-card);
}
.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-grid__item:hover img { transform: scale(1.06); }

.gallery-grid__item--tall {
  grid-row: 1 / 3;
}
.gallery-grid__item--wide {
  grid-column: 2 / 4;
}

/* ---------------------------------------------------------------
   Histoire teaser (Homepage)
--------------------------------------------------------------- */
.histoire-teaser__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.histoire-teaser__images {
  position: relative;
  height: 520px;
}
.histoire-teaser__img-wrap {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius);
}
.histoire-teaser__img-wrap:first-child {
  width: 75%;
  height: 380px;
  left: 0;
  top: 0;
}
.histoire-teaser__img-wrap--small {
  width: 50%;
  height: 240px;
  right: 0;
  bottom: 0;
  border: 3px solid var(--bg-dark);
}
.histoire-teaser__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.histoire-teaser__img-wrap:hover img { transform: scale(1.05); }

.histoire-teaser__content p {
  color: var(--cream-dim);
  margin-bottom: 1.2rem;
}
.histoire-teaser__content .btn { margin-top: 0.5rem; }

/* ---------------------------------------------------------------
   Team
--------------------------------------------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.team-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), transform var(--transition);
}
.team-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-4px);
}
.team-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  background: var(--bg-mid);
}
.team-card__initials {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
}
.team-card__name { font-size: 1.3rem; margin-bottom: 0.3rem; }
.team-card__role {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.team-card__bio { color: var(--cream-dim); font-size: 0.9rem; }

/* ---------------------------------------------------------------
   Events teaser (Homepage)
--------------------------------------------------------------- */
.events-teaser__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 0;
}
.event-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: border-color var(--transition);
}
.event-block:hover { border-color: var(--gold-dim); }
.event-block__icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.event-block h3 { font-size: 1.4rem; margin-bottom: 0.8rem; }
.event-block p { color: var(--cream-dim); margin-bottom: 1.5rem; }

/* ---------------------------------------------------------------
   Hours + CTA Band (Homepage)
--------------------------------------------------------------- */
.hours-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.hours-list {
  margin-top: 2rem;
}
.hours-list__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}
.hours-list__row:last-child { border-bottom: none; }
.hours-list__row dt {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-dim);
  flex-shrink: 0;
}
.hours-list__row dd {
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-align: right;
}
.hours-list__row--closed dd { color: var(--muted); }

.hours-cta__contact { display: flex; flex-direction: column; gap: 1rem; }
.hours-cta__lead {
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

/* CTA Band generic */
.cta-band { max-width: 680px; margin: 0 auto; }
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { color: var(--cream-dim); margin-bottom: 2rem; }
.cta-band__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------------------------------------------------------------
   Page Heroes (inner pages)
--------------------------------------------------------------- */
.page-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero--short { min-height: 45vh; }
.page-hero--menu  { min-height: 60vh; }

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,8,5,0.85) 40%, rgba(10,8,5,0.4) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
}
.page-hero__eyebrow {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.page-hero__title {
  margin-bottom: 1rem;
}
.page-hero__desc {
  color: var(--cream-dim);
  font-size: 1.1rem;
  max-width: 480px;
}

/* ---------------------------------------------------------------
   Menu page (tabs)
--------------------------------------------------------------- */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0;
}
.menu-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
  margin-bottom: -1px;
}
.menu-tab:hover { color: var(--cream); }
.menu-tab--active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.menu-panel { display: none; }
.menu-panel--active { display: block; }

.menu-items {
  max-width: 720px;
  margin: 0 auto;
}
.menu-items__category {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  padding: 1.5rem 0 0.5rem;
  border-top: 1px solid var(--border);
  margin-top: 1rem;
}
.menu-items__category:first-child { margin-top: 0; border-top: none; }

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.menu-item:last-child { border-bottom: none; }
.menu-item--featured { background: rgba(200,160,80,0.05); padding-left: 1rem; margin-left: -1rem; padding-right: 1rem; }
.menu-item__info h4 {
  font-size: 1.05rem;
  font-family: var(--font-display);
  font-weight: 400;
  margin-bottom: 0.1rem;
}
.menu-item__info p { font-size: 0.82rem; color: var(--muted); margin: 0; }
.menu-item__price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-note-small {
  text-align: center;
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(200,160,80,0.06);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--cream-dim);
}

/* ---------------------------------------------------------------
   Histoire page
--------------------------------------------------------------- */
.prose-block { max-width: 680px; margin: 0 auto; text-align: center; }
.prose-block__lead {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

/* Archives grid */
.archives-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 180px;
  gap: 6px;
}
.archives-grid__item {
  overflow: hidden;
  background: var(--bg-card);
  position: relative;
}
.archives-grid__item--main { grid-row: 1 / 3; grid-column: 1 / 3; }
.archives-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.archives-grid__item:hover img { transform: scale(1.05); }
.archives-grid__item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 0.8rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242,234,214,0.7);
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  padding-left: 100px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border-light) 5%, var(--border-light) 95%, transparent);
}
.timeline__item {
  position: relative;
  padding: 0 0 3.5rem 2.5rem;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border-light);
  transform: translateX(-50%);
  transition: background var(--transition);
}
.timeline__item:hover::before,
.timeline__item--current::before { background: var(--gold); }

.timeline__date {
  position: absolute;
  left: -100px;
  top: 0;
  width: 80px;
  text-align: right;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--gold-dim);
  padding-top: 4px;
}
.timeline__item--current .timeline__date { color: var(--gold); }

.timeline__body h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.timeline__body p { color: var(--cream-dim); font-size: 0.95rem; }

/* ---------------------------------------------------------------
   Événements page
--------------------------------------------------------------- */
.private-events__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.private-event-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: border-color var(--transition), transform var(--transition);
}
.private-event-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-3px);
}
.private-event-card__icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.private-event-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.private-event-card p { color: var(--cream-dim); font-size: 0.9rem; margin: 0; }

/* Stats */
.stats-section .container { padding-top: 3rem; padding-bottom: 3rem; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--bg-deep);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat__label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(15,12,9,0.7);
}

.themed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.themed-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border-left: 3px solid var(--gold-dim);
  transition: border-left-color var(--transition);
}
.themed-card:hover { border-left-color: var(--gold); }
.themed-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.themed-card p { color: var(--cream-dim); font-size: 0.92rem; margin: 0; }

.themed-events__notice {
  text-align: center;
  padding: 1.5rem;
  background: rgba(200,160,80,0.05);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  color: var(--cream-dim);
  font-size: 0.9rem;
}
.themed-events__notice a { color: var(--gold); }

/* ---------------------------------------------------------------
   Contact page
--------------------------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-wrap__title { font-size: 2rem; margin-bottom: 0.5rem; }
.contact-form-wrap__desc { color: var(--cream-dim); margin-bottom: 2.5rem; }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: flex; gap: 1.25rem; }
.form-row--two > .form-group { flex: 1; min-width: 0; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.form-group .required { color: var(--gold); margin-left: 2px; }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--cream);
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-card); color: var(--cream); }

.contact-notice {
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.contact-notice--success {
  background: rgba(80,160,80,0.1);
  border: 1px solid rgba(80,160,80,0.3);
  color: #8dce8d;
}
.contact-notice--error {
  background: rgba(200,80,80,0.1);
  border: 1px solid rgba(200,80,80,0.3);
  color: #e08080;
}

.contact-info { display: flex; flex-direction: column; gap: 2.5rem; }
.contact-info__block h3 { font-size: 1rem; margin-bottom: 0.8rem; color: var(--gold); letter-spacing: 0.05em; }
.contact-info__block address { font-style: normal; color: var(--cream-dim); line-height: 1.8; }
.contact-info__block a { color: var(--cream-dim); }
.contact-info__block a:hover { color: var(--gold); }
.contact-info .hours-list { margin-top: 0; }

.contact-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }

/* ---------------------------------------------------------------
   Footer
--------------------------------------------------------------- */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 5rem 0 0;
}
.site-footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.site-footer__logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--cream);
  margin-bottom: 1.2rem;
}
.site-footer__logo-letter {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.site-footer__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.site-footer__logo-text span:first-child {
  font-family: var(--font-display);
  font-size: 0.95rem;
}
.site-footer__logo-text span:last-child {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.site-footer__tagline { color: var(--muted); font-size: 0.88rem; line-height: 1.6; }
.site-footer__heading {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1.2rem;
}
.site-footer__nav ul { list-style: none; }
.site-footer__nav li { margin-bottom: 0.6rem; }
.site-footer__nav a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color var(--transition);
}
.site-footer__nav a:hover { color: var(--cream); }

.site-footer__contact address { font-style: normal; }
.site-footer__contact p { font-size: 0.88rem; color: var(--muted); margin-bottom: 0.5rem; }
.site-footer__contact a { color: var(--muted); }
.site-footer__contact a:hover { color: var(--cream); }

.footer-hours { }
.footer-hours dt {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.6rem;
  margin-bottom: 0.1rem;
}
.footer-hours dd { font-size: 0.88rem; color: var(--cream-dim); }

.site-footer__bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 2rem;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.site-footer__bottom p { font-size: 0.78rem; color: var(--muted); margin: 0; }
.site-footer__bottom a { color: var(--muted); }
.site-footer__bottom a:hover { color: var(--gold); }

/* ---------------------------------------------------------------
   Scroll reveal
--------------------------------------------------------------- */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.reveal-up    { transform: translateY(36px); }
.reveal-left  { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }

.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translate(0);
}

/* ---------------------------------------------------------------
   Responsive : tablette (≤ 1024px)
--------------------------------------------------------------- */
@media (max-width: 1024px) {
  :root { --section-py: 4.5rem; }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .histoire-teaser__inner { gap: 3rem; }
  .histoire-teaser__images { height: 400px; }

  .private-events__grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 2fr); }

  .archives-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 200px 200px;
  }
  .archives-grid__item--main { grid-column: 1 / 3; }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 220px 180px;
  }
  .gallery-grid__item--wide { grid-column: 1 / 3; }
}

/* ---------------------------------------------------------------
   Responsive : mobile (≤ 768px)
--------------------------------------------------------------- */
@media (max-width: 768px) {
  :root { --section-py: 3.5rem; }

  .site-header__burger { display: flex; }
  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--bg-mid);
    border-left: 1px solid var(--border);
    z-index: 999;
    transition: right 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
  }
  .site-nav.is-open { right: 0; }
  .site-header__overlay { display: block; }
  .site-header__overlay.is-open { opacity: 1; pointer-events: all; }

  .site-nav__list {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .site-nav__list li a { font-size: 0.95rem; letter-spacing: 0.12em; }

  .hero__title-italic { font-size: clamp(3rem, 14vw, 5rem); }
  .hero__meta { gap: 1.5rem; font-size: 0.68rem; }
  .hero__actions { flex-direction: column; align-items: center; }

  .weekly-menu__grid { grid-template-columns: 1fr; gap: 2px; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 180px);
  }
  .gallery-grid__item--tall { grid-row: auto; }
  .gallery-grid__item--wide { grid-column: auto; }

  .histoire-teaser__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .histoire-teaser__images { height: 280px; order: -1; }

  .team-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .events-teaser__grid { grid-template-columns: 1fr; }

  .hours-cta__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hours-cta__contact { align-items: flex-start; }

  .archives-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 180px);
  }
  .archives-grid__item--main { grid-column: 1 / 3; grid-row: auto; }

  .timeline { padding-left: 0; }
  .timeline::before { display: none; }
  .timeline__date { position: static; width: auto; text-align: left; font-size: 0.68rem; margin-bottom: 0.3rem; }
  .timeline__item { padding-left: 0; padding-bottom: 2.5rem; border-left: 2px solid var(--border-light); padding-left: 1.5rem; }
  .timeline__item::before { left: 0; }

  .private-events__grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .themed-grid { grid-template-columns: 1fr; }

  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .form-row--two { flex-direction: column; }

  .site-footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .site-footer__bottom { flex-direction: column; text-align: center; }

  .page-hero { min-height: 50vh; }
  .page-hero--short { min-height: 40vh; }
}

/* ---------------------------------------------------------------
   Utilitaires
--------------------------------------------------------------- */
.content-area { max-width: 760px; margin: 0 auto; }
.content-area p, .content-area li { color: var(--cream-dim); }
