/* ================================================================
   LE CANEVAS — custom.css
   Maison de Levain du Port · La Londe-les-Maures
   ================================================================ */

/* ---------------------------------------------------------------
   IMPORTS & VARIABLES
   --------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  /* Brand Palette */
  --lc-navy:       #1a2744;
  --lc-navy-deep:  #111c35;
  --lc-green:      #6b7a4f;
  --lc-green-light:#8a9c6a;
  --lc-sand:       #e8c88a;
  --lc-sand-light: #f5efe0;
  --lc-sand-pale:  #faf6ee;
  --lc-white:      #ffffff;
  --lc-text:       #2c2c2c;
  --lc-text-muted: #7a7a7a;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --section-py:   clamp(5rem, 10vw, 9rem);

  /* Transitions */
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------------------------------------------------------------
   RESET & BASE
   --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--lc-text);
  background: var(--lc-white);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

/* ---------------------------------------------------------------
   GLOBAL TYPOGRAPHY
   --------------------------------------------------------------- */

a:visited { color: inherit; }

.lc-nav__link:focus,
.lc-nav__link:focus-visible,
.lc-mobile-menu__link:focus,
.lc-mobile-menu__link:focus-visible {
  outline: none;
}

.lc-section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lc-green);
  margin-bottom: 1rem;
}

.lc-section-eyebrow--light { color: var(--lc-sand); }

.lc-section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--lc-navy);
  margin-bottom: 1.5rem;
}

.lc-section-title--light { color: var(--lc-white); }

/* ---------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------- */
.lc-btn {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 0;
  border: 1.5px solid transparent;
  transition: all 0.3s var(--ease);
  color: rgba(255, 255, 255, 0.75) !important;
}

.lc-btn--primary {
  background: var(--lc-sand);
  color: var(--lc-navy);
  border-color: var(--lc-sand);
}

.lc-btn--primary:hover {
  background: var(--lc-navy);
  color: var(--lc-sand);
  border-color: var(--lc-navy);
}

.lc-btn--ghost {
  background: transparent;
  color: var(--lc-white);
  border-color: rgba(255,255,255,0.5);
}

.lc-btn--ghost:hover {
  background: var(--lc-white);
  color: var(--lc-navy);
  border-color: var(--lc-white);
}

/* ── Bouton réservation fixe ─────────────────────────────── */
.lc-resa-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--lc-sand);
  color: var(--lc-navy);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.5rem;
  box-shadow: 0 4px 24px rgba(26, 39, 68, 0.25);
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.lc-resa-btn:hover {
  background: var(--lc-navy);
  color: var(--lc-sand);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(26, 39, 68, 0.35);
}

.lc-resa-btn .bi {
  font-size: 1rem;
}

@media (max-width: 767.98px) {
  .lc-resa-btn {
    bottom: 1.25rem;
    right: 1.25rem;
    padding: 0.85rem 1.25rem;
  }

  .lc-resa-btn span {
    display: none; /* icône seule sur mobile */
  }

  .lc-resa-btn .bi {
    font-size: 1.2rem;
  }
}

/* ---------------------------------------------------------------
   HERO
   --------------------------------------------------------------- */
.lc-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
	align-items: center;
  padding-bottom: 0;
  overflow: hidden;
}

.lc-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lc-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  animation: heroZoom 14s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.00); }
}

.lc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(17, 28, 53, 0.85) 0%,
    rgba(17, 28, 53, 0.60) 50%,
    rgba(17, 28, 53, 0.75) 100%
  );
  z-index: 1;
}

.lc-hero__content {
  position: relative;
  z-index: 2;
}

.lc-hero__eyebrow {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lc-sand);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.3s forwards;
}

.lc-hero__title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--lc-white);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.lc-hero__title-line {
  display: block;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) forwards;
}

.lc-hero__title-line:nth-child(1) { animation-delay: 0.5s; }
.lc-hero__title-line:nth-child(2) { animation-delay: 0.7s; color: var(--lc-sand); font-style: normal; font-weight: 600; }
.lc-hero__title-line:nth-child(3) { animation-delay: 0.9s; }

.lc-hero__baseline {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 1.1s forwards;
}

.lc-hero__ctas {
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 1.3s forwards;
}

.lc-hero__badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(232, 200, 138, 0.4);
  padding: 1.5rem 2rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 1.5s forwards;
}

.lc-hero__badge-top,
.lc-hero__badge-bottom {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--lc-sand);
}

.lc-hero__badge-sep {
  color: rgba(255,255,255,0.3);
  margin: 0.4rem 0;
  font-size: 1.2rem;
}

.lc-hero__scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 2s forwards;
}

.lc-hero__scroll-cue span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.lc-hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { opacity: 1; transform: scaleY(1) translateY(0); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(0.3) translateY(20px); transform-origin: top; }
}






/* ================================================================
   CONCEPT — Jour / Soir cards
   ================================================================ */

.lc-concept {
  padding: var(--section-py) 0 0 0; /* pas de padding-bottom */
  background: var(--lc-sand-pale);
}

/* ── Card base ─────────────────────────────────────────────── */
.lc-concept-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}

.lc-concept-card__inner {
  position: relative;
  z-index: 2;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* ── Côté Jour ─────────────────────────────────────────────── */
.lc-concept-card--jour {
  background: var(--lc-white);
  border: 1px solid rgba(26, 39, 68, 0.07);
}

.lc-concept-card__sun {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 220px;
  height: 220px;
  z-index: 1;
  pointer-events: none;
}

.lc-concept-card__sun-circle {
  position: absolute;
  inset: 25px;
  border-radius: 50%;
  background: rgba(232, 200, 138, 0.15);
}

.lc-concept-card__sun-rays {
  position: absolute;
  inset: 0;
  background: repeating-conic-gradient(
    rgba(232, 200, 138, 0.07) 0deg 10deg,
    transparent 10deg 20deg
  );
  border-radius: 50%;
  animation: sunSpin 60s linear infinite;
}

@keyframes sunSpin {
  to { transform: rotate(360deg); }
}

/* ── Côté Soir ─────────────────────────────────────────────── */
.lc-concept-card--soir {
  background: var(--lc-navy);
}

.lc-concept-card__moon {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(232, 200, 138, 0.07);
  z-index: 1;
  pointer-events: none;
}

.lc-concept-card__moon::after {
  content: '';
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  border: 1px solid rgba(232, 200, 138, 0.12);
}

.lc-concept-card__waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 1;
  pointer-events: none;
}

.lc-concept-card__waves svg { width: 100%; height: 100%; }

/* ── Eyebrow ───────────────────────────────────────────────── */
.lc-concept-card__eyebrow {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lc-green);
  margin-bottom: 0.6rem;
}

.lc-concept-card__eyebrow--light { color: var(--lc-sand); }

/* ── Title ─────────────────────────────────────────────────── */
.lc-concept-card__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--lc-navy);
  margin-bottom: 1.25rem;
}

.lc-concept-card__title--light { color: var(--lc-white); }

/* ── List ──────────────────────────────────────────────────── */
.lc-concept-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.lc-concept-card__list li {
  font-size: 0.85rem;
  color: #4a4a4a;
  padding-left: 1rem;
  position: relative;
}

.lc-concept-card__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--lc-green-light);
  font-size: 0.7rem;
  top: 3px;
}

.lc-concept-card__list--light li { color: rgba(255,255,255,0.6); }
.lc-concept-card__list--light li::before { color: var(--lc-sand); }

/* ── Highlight ─────────────────────────────────────────────── */
.lc-concept-card__highlight {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  border-left: 2px solid var(--lc-green);
  padding: 0.55rem 0.9rem;
  margin-bottom: 0.75rem;
  background: rgba(107, 122, 79, 0.05);
}

.lc-concept-card__highlight strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--lc-navy);
}

.lc-concept-card__highlight span {
  font-size: 0.75rem;
  color: var(--lc-text-muted);
}

.lc-concept-card__highlight--light {
  border-left-color: var(--lc-sand);
  background: rgba(232, 200, 138, 0.07);
}

.lc-concept-card__highlight--light strong { color: var(--lc-white); }
.lc-concept-card__highlight--light span   { color: rgba(255,255,255,0.45); }

/* ── Closed ────────────────────────────────────────────────── */
.lc-concept-card__closed {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lc-text-muted);
  margin: 0;
  margin-top: auto;
  padding-top: 1rem;
}

/* ── Access ────────────────────────────────────────────────── */
.lc-concept-card__access {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.lc-concept-card__access span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.lc-concept-card__access .bi { color: var(--lc-sand); font-size: 0.75rem; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .lc-concept-card { min-height: 320px; }
  .lc-concept-card__inner { padding: 2rem; }
  .lc-concept-card__title { font-size: clamp(1.8rem, 6vw, 2.4rem); }
}




/* ================================================================
   GALERIE
   ================================================================ */

.lc-galerie {
  padding: 2.5rem 0 var(--section-py) 0; /* petit espace en haut seulement */
  background: var(--lc-sand-pale);
}

.lc-galerie__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

/* Colonne droite */
.lc-galerie__right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lc-galerie__row-top,
.lc-galerie__row-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  flex: 1;
}

/* ── Items ─────────────────────────────────────────────────── */
.lc-galerie__item {
  position: relative;
  overflow: hidden;
  background: var(--lc-navy-deep);
}

.lc-galerie__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
  filter: brightness(0.9) saturate(0.85);
}

.lc-galerie__item:hover img {
  transform: scale(1.05);
  filter: brightness(1) saturate(1);
}

/* Grande photo — hauteur fixe */
.lc-galerie__item--tall {
  height: 548px; /* 2 × 270px + 8px gap */
}

/* Petites photos */
.lc-galerie__row-top .lc-galerie__item,
.lc-galerie__row-bottom .lc-galerie__item {
  height: 270px;
}

/* ── Caption ───────────────────────────────────────────────── */
.lc-galerie__caption {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--lc-white);
  background: rgba(17, 28, 53, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0.35rem 0.85rem;
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.lc-galerie__item:hover .lc-galerie__caption {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .lc-galerie__item--tall { height: 428px; } /* 2 × 210px + 8px */
  .lc-galerie__row-top .lc-galerie__item,
  .lc-galerie__row-bottom .lc-galerie__item { height: 210px; }
}

@media (max-width: 767.98px) {
  .lc-galerie__grid {
    grid-template-columns: 1fr;
  }

  .lc-galerie__item--tall { height: 260px; }

  .lc-galerie__row-top,
  .lc-galerie__row-bottom {
    grid-template-columns: 1fr 1fr;
  }

  .lc-galerie__row-top .lc-galerie__item,
  .lc-galerie__row-bottom .lc-galerie__item { height: 160px; }
}








/* ---------------------------------------------------------------
   MENU
   --------------------------------------------------------------- */
.lc-menu {
  background: var(--lc-navy);
}

.lc-menu__header {
  padding: var(--section-py) 0 3rem;
}

/* ── Onglets — style boutons bien visibles ───────────────────── */
.lc-menu__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  border: none;
  margin-top: 2.5rem;
}

.lc-menu__tab {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0;
  padding: 0.7rem 1.4rem;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.lc-menu__tab:hover {
  background: rgba(255,255,255,0.13);
  color: var(--lc-white);
  border-color: rgba(255,255,255,0.25);
}

.lc-menu__tab.active {
  background: var(--lc-sand);
  color: var(--lc-navy);
  border-color: var(--lc-sand);
  font-weight: 600;
}

/* ── Contenu ─────────────────────────────────────────────────── */
.lc-menu__content {
  background: var(--lc-sand-pale);
  padding: clamp(3rem, 7vw, 5rem) 0 var(--section-py);
}

/* ── Catégorie ───────────────────────────────────────────────── */
.lc-menu__category {
  margin-bottom: 4rem;
}

.lc-menu__category:last-child { margin-bottom: 0; }

.lc-menu__category-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--lc-navy);
  font-style: italic;
  margin-bottom: 0.25rem;
}

.lc-menu__category-title span {
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lc-text-muted);
  margin-left: 0.6rem;
  vertical-align: middle;
}

.lc-menu__category-sub {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--lc-text-muted);
  text-transform: uppercase;
  margin-bottom: 0;
}

/* ── Note ────────────────────────────────────────────────────── */
.lc-menu__note {
  font-size: 0.82rem;
  color: var(--lc-text-muted);
  font-style: italic;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.lc-menu__note strong {
  color: var(--lc-navy);
  font-style: normal;
}

/* ── Item de base (avec puce) ────────────────────────────────── */
.lc-menu-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

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

.lc-menu-item__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lc-green);
  margin-top: 0.6rem;
  flex-shrink: 0;
}

.lc-menu-item__dot--night { background: var(--lc-sand); }

.lc-menu-item__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--lc-navy);
  display: block;
  margin-bottom: 0.2rem;
}

.lc-menu-item__desc {
  font-size: 0.88rem;
  color: var(--lc-text-muted);
  margin: 0;
  line-height: 1.55;
}

/* ── Item avec prix — card blanche ───────────────────────────── */
.lc-menu-item--prix {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 1.25rem;
  border-bottom: none;
  background: var(--lc-white);
  border: 1px solid rgba(26,39,68,0.07);
  margin-bottom: 0.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.lc-menu-item--prix:hover {
  border-color: rgba(26,39,68,0.15);
  box-shadow: 0 2px 12px rgba(26,39,68,0.05);
}

.lc-menu-item--prix:last-child { margin-bottom: 0; }

.lc-menu-item__info { flex: 1; min-width: 0; }

.lc-menu-item__price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--lc-navy);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 0.15rem;
}

/* ── Compact ─────────────────────────────────────────────────── */
.lc-menu-item--compact {
  padding: 0.65rem 1.25rem;
}

.lc-menu-item--compact .lc-menu-item__name {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ── Vin ─────────────────────────────────────────────────────── */
.lc-menu-item--vin { padding: 1rem 1.25rem; }

.lc-menu-item--vin .lc-menu-item__name {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── Vins par couleur ────────────────────────────────────────── */
.lc-vins__couleur { margin-bottom: 2.5rem; }

.lc-vins__couleur-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  font-style: italic;
  color: var(--lc-navy);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid rgba(26,39,68,0.1);
}

/* ── Formules ────────────────────────────────────────────────── */
.lc-formule-card {
  height: 100%;
  border: 1px solid rgba(26,39,68,0.1);
  background: var(--lc-white);
  padding: 2rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.lc-formule-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,39,68,0.08);
}

.lc-formule-card--featured {
  background: var(--lc-navy);
  border-color: transparent;
}

.lc-formule-card--featured .lc-formule-card__title { color: var(--lc-white); border-bottom-color: rgba(255,255,255,0.08); }
.lc-formule-card--featured .lc-formule-card__list li { color: rgba(255,255,255,0.75); }
.lc-formule-card--featured .lc-formule-card__list li span { color: rgba(255,255,255,0.4); }
.lc-formule-card--featured .lc-formule-card__list li::before { color: var(--lc-sand); }

.lc-formule-card__price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--lc-sand);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.lc-formule-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--lc-navy);
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(26,39,68,0.08);
}

.lc-formule-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lc-formule-card__list li {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--lc-navy);
  padding-left: 1rem;
  position: relative;
}

.lc-formule-card__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--lc-green-light);
  font-size: 0.7rem;
  top: 3px;
}

.lc-formule-card__list li span {
  display: block;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--lc-text-muted);
  margin-top: 0.15rem;
}

/* ── Card desserts ───────────────────────────────────────────── */
.lc-menu-item--card {
  flex-direction: column;
  padding: 0;
  border: none;
  overflow: hidden;
  background: var(--lc-white);
}

.lc-menu-item--card .lc-menu-item__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.lc-menu-item--card:hover .lc-menu-item__img { transform: scale(1.04); }

.lc-menu-item__body { padding: 1.2rem; }

/* ── Plat du jour ────────────────────────────────────────────── */
.lc-menu__plat-du-jour {
  background: var(--lc-navy);
  padding: 2.5rem 3rem;
  margin-bottom: 4rem;
}

.lc-menu__plat-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lc-sand);
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.lc-menu__plat-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--lc-white);
  font-style: italic;
  margin-bottom: 0.5rem;
}

.lc-menu__plat-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  margin: 0;
}

.lc-ardoise {
  display: inline-block;
  border: 1px solid rgba(232,200,138,0.4);
  padding: 1rem 1.5rem;
  text-align: center;
}

.lc-ardoise__label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lc-sand);
  opacity: 0.6;
  margin-bottom: 0.3rem;
}

.lc-ardoise__plat {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--lc-sand);
  margin: 0;
}

/* ── Cocktail cards ──────────────────────────────────────────── */
.lc-cocktail-card {
  padding: 2rem 1.5rem;
  background: var(--lc-white);
  transition: transform 0.3s var(--ease);
}

.lc-cocktail-card:hover { transform: translateY(-4px); }

.lc-cocktail-card__circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--lc-sand-light);
  margin-bottom: 1rem;
  transition: transform 0.4s var(--ease), background 0.3s;
}

.lc-cocktail-card:hover .lc-cocktail-card__circle {
  transform: scale(1.2);
  background: var(--lc-sand);
}

.lc-cocktail-card strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--lc-navy);
  display: block;
  margin-bottom: 0.3rem;
}

.lc-cocktail-card p {
  font-size: 0.85rem;
  color: var(--lc-text-muted);
  margin: 0;
  line-height: 1.5;
}

.lc-menu-item__price--soon {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  font-style: italic;
  color: var(--lc-text-muted);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 767.98px) {
  .lc-menu__tab { padding: 0.6rem 1rem; font-size: 0.68rem; }
  .lc-menu__plat-du-jour { padding: 2rem; }
  .lc-formule-card { padding: 1.5rem; }
  .lc-menu-item--prix { padding: 1rem; }
}























/* ---------------------------------------------------------------
   EVENTS
   --------------------------------------------------------------- */
.lc-events {
  padding: var(--section-py) 0;
  background: var(--lc-white);
}

.lc-events__intro {
  font-size: 1rem;
  color: var(--lc-text-muted);
  line-height: 1.7;
  margin-top: 1.5rem;
}

.lc-events__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lc-event-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: background 0.3s;
}

.lc-event-item:first-child { border-top: 1px solid rgba(0,0,0,0.07); }

.lc-event-item--featured {
  background: var(--lc-sand-pale);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin: 0 -1.5rem;
  border-color: transparent !important;
}

.lc-event-item__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
  flex-shrink: 0;
}

.lc-event-item__day {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--lc-navy);
  line-height: 1;
}

.lc-event-item__month {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lc-green);
  font-weight: 500;
}

.lc-event-item__content { flex: 1; }

.lc-event-item__tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lc-green);
  border: 1px solid var(--lc-green-light);
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.5rem;
}

.lc-event-item__content h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--lc-navy);
  margin-bottom: 0.25rem;
}

.lc-event-item__content p {
  font-size: 0.85rem;
  color: var(--lc-text-muted);
  margin: 0;
}

.lc-event-item__time {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--lc-text-muted);
  text-align: right;
  min-width: 90px;
}

/* ---------------------------------------------------------------
   HORAIRES
   --------------------------------------------------------------- */
.lc-horaires {
  padding: var(--section-py) 0;
  background: var(--lc-navy-deep);
}

.lc-horaires__address {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
}

.lc-horaires__address a {
  color: var(--lc-sand);
  transition: opacity 0.2s;
}

.lc-horaires__address a:hover { opacity: 0.8; }

.lc-horaire-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.4rem 1.8rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color 0.3s;
}

.lc-horaire-card:hover { border-color: rgba(232, 200, 138, 0.3); }

.lc-horaire-card--featured {
  background: rgba(232, 200, 138, 0.08);
  border-color: rgba(232, 200, 138, 0.25);
}

.lc-horaire-card__icon { font-size: 1.3rem; flex-shrink: 0; }

.lc-horaire-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--lc-white);
  margin-bottom: 0.2rem;
}

.lc-horaire-card p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

.lc-horaire-card__time {
  margin-left: auto;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--lc-sand);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── MAP CTA ─────────────────────────────────────────────── */
.lc-map-cta {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.lc-map-cta__map {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lc-map-cta__overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  background: linear-gradient(to right,
    rgba(17,28,53,0.88) 0%,
    rgba(17,28,53,0.65) 35%,
    rgba(17,28,53,0.00) 65%
  );
  display: flex;
  align-items: center;
}

/* Rendre les éléments cliquables dans l'overlay */
.lc-map-cta__overlay .container {
  pointer-events: auto;
  text-align: left !important;
}

.lc-map-cta__overlay h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--lc-white);
  margin: 0;
}

/* Filtre subtil sur les tiles — désature légèrement */
.lc-map-cta__map .leaflet-tile-pane {
  filter: saturate(0.55) brightness(0.95);
}

/* Marqueur personnalisé */
.lc-map-marker__pin {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--lc-sand);
  border: 3px solid var(--lc-navy);
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

/* Popup Leaflet */
.leaflet-popup-content-wrapper {
  border-radius: 0 !important;
  font-family: var(--font-body) !important;
  font-size: 0.82rem !important;
  color: var(--lc-navy) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
}

.leaflet-popup-tip { background: white !important; }

@media (max-width: 767.98px) {
  .lc-map-cta { height: 400px; }
  .lc-map-cta__overlay {
    background: linear-gradient(to bottom, rgba(17,28,53,0.85) 0%, rgba(17,28,53,0.1) 70%);
    align-items: flex-start;
    padding-top: 2rem;
  }
}

/* ---------------------------------------------------------------
   ANIMATIONS
   --------------------------------------------------------------- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll-triggered fade (JS adds .is-visible) */
.lc-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.lc-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .lc-concept__img-caption {
    right: 0;
    bottom: -0.5rem;
  }

  .lc-event-item__time { display: none; }

  .lc-menu__plat-du-jour { padding: 2rem; }
}

@media (max-width: 767.98px) {
  .lc-hero__badge { margin-top: 2rem; }

  .lc-event-item { gap: 1rem; }

  .lc-horaire-card { flex-wrap: wrap; }
  .lc-horaire-card__time { margin-left: 0; }
}


/* ================================================================
   HEADER — lc-header
   ================================================================ */

.lc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 0;
}

/* État initial : transparent sur le hero */
.lc-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 80px;
  transition: height 0.4s var(--ease);
}

/* État scrollé : fond sombre + ombre */
.lc-header.is-scrolled {
  background: rgba(17, 28, 53, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.25);
}

.lc-header.is-scrolled .lc-header__inner {
  height: 64px;
}

/* Menu mobile ouvert → fond solide */
.lc-header.is-open {
  background: var(--lc-navy-deep);
}

/* ── Brand / Logo ──────────────────────────────────────────── */
.lc-header__logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.lc-header__logo-img {
  height: 26px;
  width: auto;
  transition: height 0.4s var(--ease);
}

.lc-header.is-scrolled .lc-header__logo-img {
  height: 26px;
}

/* Fallback texte si pas de logo uploadé */
.lc-header__logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--lc-white);
  letter-spacing: 0.02em;
}

.lc-header__logo-text strong {
  font-weight: 600;
}

/* ── Navigation desktop ────────────────────────────────────── */
.lc-header__nav { display: flex; }

.lc-nav__list {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lc-nav__item { position: relative; }

.lc-nav__link {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75)!important;
  text-decoration: none;
  padding-bottom: 4px;
  position: relative;
  transition: color 0.25s;
}

.lc-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--lc-sand);
  transition: width 0.3s var(--ease);
}

.lc-nav__link:hover,
.lc-nav__link.current-menu-item {
  color: var(--lc-white);
}

.lc-nav__link:hover::after,
.lc-nav__link.current-menu-item::after {
  width: 100%;
}

/* ── Actions (CTA tel + burger) ────────────────────────────── */
.lc-header__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.lc-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lc-sand);
  border: 1px solid rgba(232, 200, 138, 0.35);
  padding: 0.55rem 1.1rem;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}

.lc-header__cta:hover {
  background: var(--lc-sand);
  color: var(--lc-navy);
}

.lc-header__cta .bi { font-size: 0.85rem; }

/* ── Burger ────────────────────────────────────────────────── */
.lc-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.lc-burger__bar {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--lc-white);
  transition: transform 0.35s var(--ease), opacity 0.25s;
  transform-origin: center;
}

/* Burger → croix */
.lc-burger.is-active .lc-burger__bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.lc-burger.is-active .lc-burger__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.lc-burger.is-active .lc-burger__bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── Menu mobile ───────────────────────────────────────────── */
.lc-mobile-menu {
  position: fixed;
  inset: 0;
  top: 80px; /* sous le header */
  background: var(--lc-navy-deep);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2rem;
  /* Fermé */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.35s var(--ease), visibility 0.35s, transform 0.35s var(--ease);
}

.lc-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lc-mobile-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lc-mobile-menu__link {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s, padding-left 0.3s var(--ease);
}

.lc-mobile-menu__link:hover {
  color: var(--lc-sand);
  padding-left: 0.5rem;
}

.lc-mobile-menu__footer {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.lc-mobile-menu__tel {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--lc-sand);
  font-size: 0.9rem;
  text-decoration: none;
  margin-bottom: 0.75rem;
}

.lc-mobile-menu__address {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  margin: 0;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .lc-header__nav  { display: none; }
  .lc-burger       { display: flex; }
  .lc-header__cta  { display: none !important; }
}

/* Décaler le contenu pour ne pas passer sous le header fixe */
#page { padding-top: 80px; }

/* Sur la front-page le hero est full-screen donc pas de décalage */
.home #page { padding-top: 0; }
.home .lc-hero { padding-top: 80px; }


/* ================================================================
   FOOTER — lc-footer
   ================================================================ */

.lc-footer {
  background: var(--lc-navy-deep);
  color: rgba(255,255,255,0.6);
}

.lc-footer__main {
  padding: clamp(3rem, 6vw, 5rem) 0 2rem; /* était clamp(4rem, 8vw, 6rem) */
}

/* ── Logo + tagline ────────────────────────────────────────── */
.lc-footer__logo-img {
  height: 32px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s;
  margin-bottom: 1.2rem;
}

.lc-footer__logo-link:hover .lc-footer__logo-img {
  opacity: 1;
}

.lc-footer__logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--lc-white);
}

.lc-footer__logo-text strong { font-weight: 600; }

.lc-footer__tagline {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  line-height: 1.8;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
}

/* ── Socials ───────────────────────────────────────────────── */
.lc-footer__socials {
  display: flex;
  gap: 1rem;
}

.lc-footer__socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.lc-footer__socials a:hover {
  border-color: var(--lc-sand);
  color: var(--lc-sand);
}

/* ── Col titles ────────────────────────────────────────────── */
.lc-footer__col-title {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lc-sand);
  margin-bottom: 1.5rem;
}

/* ── Horaires ──────────────────────────────────────────────── */
.lc-footer__hours {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lc-footer__hours li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.82rem;
  line-height: 1.5;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.lc-footer__hours li:last-child { border-bottom: none; }

.lc-footer__hours-label { color: rgba(255,255,255,0.65); }
.lc-footer__hours-label em { display: block; font-style: normal; color: rgba(255,255,255,0.35); font-size: 0.74rem; }

.lc-footer__hours-time {
  font-weight: 500;
  color: var(--lc-white);
  white-space: nowrap;
  flex-shrink: 0;
}

.lc-footer__hours-featured .lc-footer__hours-label { color: var(--lc-sand); }
.lc-footer__hours-featured .lc-footer__hours-time  { color: var(--lc-sand); }

/* ── Adresse ───────────────────────────────────────────────── */
.lc-footer__address {
  font-style: normal;
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
}

.lc-footer__address p { margin-bottom: 0.75rem; }

.lc-footer__address .bi {
  color: var(--lc-green-light);
  margin-right: 0.4rem;
}

.lc-footer__address a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.lc-footer__address a:hover { color: var(--lc-sand); }

.lc-footer__map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lc-green-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(138, 156, 106, 0.35);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.lc-footer__map-link:hover {
  color: var(--lc-sand);
  border-color: var(--lc-sand);
}

/* ── Footer bottom ─────────────────────────────────────────── */
.lc-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.25rem 0;
}

.lc-footer__copy,
.lc-footer__legal {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
  letter-spacing: 0.03em;
}

.lc-footer__legal a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.lc-footer__legal a:hover { color: var(--lc-white); }


/* ================================================================
   PROGRAMMATION MUSICALE — lc-prog
   ================================================================ */

.lc-prog {
  padding: var(--section-py) 0;
  background: var(--lc-sand-pale);
  overflow: hidden;
}

/* ── Navigation ────────────────────────────────────────────── */
.lc-prog__nav {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(26, 39, 68, 0.2);
  background: transparent;
  color: var(--lc-navy);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  flex-shrink: 0;
}

.lc-prog__nav:hover {
  background: var(--lc-navy);
  color: var(--lc-white);
  border-color: var(--lc-navy);
}

.lc-prog__nav.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* ── Swiper ────────────────────────────────────────────────── */
.lc-prog__swiper { overflow: visible !important; }

.lc-prog__swiper .swiper-wrapper { align-items: stretch; }

.lc-prog__swiper .swiper-slide {
  height: auto;
  width: 320px;
}

/* ── Card ──────────────────────────────────────────────────── */
.lc-prog-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--lc-white);
  border: 1px solid rgba(26, 39, 68, 0.07);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.lc-prog-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--lc-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.lc-prog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(26, 39, 68, 0.1);
}

.lc-prog-card:hover::after { transform: scaleX(1); }

/* Featured */
.lc-prog-card--featured {
  background: var(--lc-navy);
  border-color: transparent;
}

.lc-prog-card--featured::after { background: var(--lc-sand); }

/* ── Photo ─────────────────────────────────────────────────── */
.lc-prog-card__photo {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.lc-prog-card__photo img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.lc-prog-card:hover .lc-prog-card__photo img {
  transform: scale(1.04);
}

/* Date en overlay sur la photo */
.lc-prog-card__photo-date {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--lc-navy);
  color: var(--lc-white);
  padding: 0.4rem 0.6rem;
  min-width: 42px;
  line-height: 1;
}

.lc-prog-card--featured .lc-prog-card__photo-date {
  background: var(--lc-sand);
  color: var(--lc-navy);
}

.lc-prog-card__day {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
}

.lc-prog-card__month {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 1px;
}

/* Tag en overlay bas de photo */
.lc-prog-card__photo .lc-prog-card__tag {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(17, 28, 53, 0.75);
  backdrop-filter: blur(4px);
  color: var(--lc-sand);
  padding: 0.25rem 0.55rem;
  white-space: nowrap;
}

.lc-prog-card--featured .lc-prog-card__photo .lc-prog-card__tag {
  background: rgba(232, 200, 138, 0.2);
  color: var(--lc-sand);
}

/* ── Card Body ─────────────────────────────────────────────── */
.lc-prog-card__body {
  padding: 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lc-prog-card__artist {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--lc-navy);
  margin-bottom: 0.1rem;
  line-height: 1.2;
}

.lc-prog-card--featured .lc-prog-card__artist { color: var(--lc-white); }

.lc-prog-card__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--lc-green);
  margin-bottom: 0.75rem;
}

.lc-prog-card--featured .lc-prog-card__title { color: var(--lc-sand); }

.lc-prog-card__desc {
  font-size: 0.8rem;
  color: var(--lc-text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
  flex: 1;
}

.lc-prog-card--featured .lc-prog-card__desc { color: rgba(255,255,255,0.5); }

.lc-prog-card__lineup {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 0.85rem;
}

.lc-prog-card--featured .lc-prog-card__lineup { border-top-color: rgba(255,255,255,0.08); }

.lc-prog-card__lineup li {
  font-size: 0.76rem;
  color: var(--lc-text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.lc-prog-card__lineup .bi { font-size: 0.65rem; color: var(--lc-green-light); flex-shrink: 0; }

.lc-prog-card--featured .lc-prog-card__lineup li   { color: rgba(255,255,255,0.45); }
.lc-prog-card--featured .lc-prog-card__lineup .bi  { color: var(--lc-sand); }

/* ── Card Footer ───────────────────────────────────────────── */
.lc-prog-card__footer {
  padding: 0.85rem 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.05);
  background: rgba(0,0,0,0.015);
}

.lc-prog-card--featured .lc-prog-card__footer {
  border-top-color: rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
}

.lc-prog-card__genre {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lc-text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.lc-prog-card__genre .bi { color: var(--lc-green-light); }

.lc-prog-card--featured .lc-prog-card__genre      { color: rgba(255,255,255,0.35); }
.lc-prog-card--featured .lc-prog-card__genre .bi  { color: var(--lc-sand); }

.lc-footer__alcohol {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
  margin: 0;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 575.98px) {
  .lc-prog__swiper .swiper-slide { width: 280px; }
}