/* =========================================================
   VIEILLES MÉCANIQUES DE BAULMES — V2.0 — La Revue
   Editorial vintage · Cormorant Garamond + DM Sans
   ========================================================= */

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

/* ===== VARIABLES ===== */
:root {
  /* Palette */
  --ink:          #1C1917;    /* asphalt chaud */
  --ink-2:        #2D2925;    /* secondaire */
  --ink-3:        #111009;    /* profond */
  --ivory:        #FAF6EE;    /* fond principal */
  --ivory-2:      #EFE9DA;    /* fond alternatif */
  --ivory-3:      #E2DBCF;    /* fond sombre */
  --copper:       #B8722E;    /* cuivre patiné — CTA principal */
  --copper-light: #CF8F4C;    /* cuivre clair */
  --copper-dark:  #93591F;    /* cuivre foncé */
  --chrome:       #8B7E74;    /* chrome — texte secondaire */
  --chrome-light: #AEA49C;    /* chrome clair */
  --white:        #FFFFFF;
  --text:         #1C1917;
  --text-muted:   #6B6057;
  --text-faint:   #9A8F86;
  --border:       rgba(28,25,23,0.1);
  --border-dark:  rgba(28,25,23,0.18);

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

  /* Radius */
  --radius-xs: 3px;
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(28,25,23,0.07);
  --shadow-sm: 0 2px 8px rgba(28,25,23,0.07), 0 1px 3px rgba(28,25,23,0.05);
  --shadow:    0 4px 24px rgba(28,25,23,0.09), 0 1px 6px rgba(28,25,23,0.06);
  --shadow-md: 0 8px 40px rgba(28,25,23,0.12), 0 2px 8px rgba(28,25,23,0.08);
  --shadow-hover: 0 20px 56px rgba(28,25,23,0.16), 0 4px 12px rgba(28,25,23,0.1);
  --shadow-dark: 0 24px 80px rgba(0,0,0,0.45);

  /* Transitions */
  --t: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --t-spring: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 68px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: var(--t);
}
.navbar.scrolled {
  background: rgba(28, 25, 23, 0.97);
  border-bottom-color: transparent;
}
.navbar.scrolled .nav-link { color: rgba(255,255,255,0.7); }
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active { color: white; background: rgba(255,255,255,0.08); }
.navbar.scrolled .nav-logo-text { color: white; }
.navbar.scrolled .hamburger-bar { background: white; }

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: var(--t);
}
.nav-logo-fallback {
  width: 44px; height: 44px;
  background: var(--ink);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1rem; color: white;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
  line-height: 1.3;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  padding: 7px 15px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--ink);
  transition: var(--t);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.nav-link:hover { background: var(--ink); color: white; }
.nav-link.active { background: var(--ink); color: white; }
.nav-cta {
  background: var(--copper) !important;
  color: white !important;
  font-weight: 600 !important;
  margin-left: 6px;
}
.nav-cta:hover { background: var(--copper-dark) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger-bar {
  width: 22px; height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--t);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ink-3);
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link {
  font-family: var(--font-display);
  color: rgba(255,255,255,0.8);
  font-size: 1.6rem;
  font-weight: 600;
  padding: 12px 40px;
  border-radius: var(--radius);
  letter-spacing: 0.01em;
}
.mobile-menu .nav-link:hover,
.mobile-menu .nav-link.active { color: white; background: rgba(255,255,255,0.07); }
.mobile-menu .nav-cta { background: var(--copper) !important; color: white !important; margin-left: 0 !important; }
.mobile-close {
  position: absolute;
  top: 18px; right: 22px;
  font-size: 1.8rem; color: rgba(255,255,255,0.6); padding: 8px;
  cursor: pointer; transition: var(--t);
  font-family: var(--font-body);
}
.mobile-close:hover { color: white; transform: rotate(90deg); }

/* ===== PAGE WRAPPER ===== */
.page-wrapper { padding-top: 68px; }

/* ===== SITE HERO (homepage) ===== */
.site-hero {
  min-height: calc(100vh - 68px);
  background: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.site-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(184,114,46,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.site-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--copper);
  display: block;
}

.site-hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700;
  color: white;
  line-height: 1.08;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.site-hero h1 em {
  font-style: italic;
  color: var(--copper-light);
  display: block;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 400px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.site-hero-visual {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.site-hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--ink) 0%, transparent 30%);
  z-index: 1;
  pointer-events: none;
}
.site-hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
  display: block;
}
.site-hero-visual:hover img { transform: scale(1.04); }
.hero-visual-badge {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  white-space: nowrap;
}

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--ink-2);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 40px;
  text-align: center;
}
.stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 6px;
  font-style: italic;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ===== NEXT EVENT STRIP ===== */
.next-event-strip {
  background: var(--ivory);
  border-bottom: 1px solid var(--border);
  padding: 32px 40px;
}
.next-event-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.next-event-kicker {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  min-width: 130px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.next-event-kicker::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--copper);
}
.next-event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--ink);
  color: white;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  min-width: 64px;
  text-align: center;
  flex-shrink: 0;
}
.next-event-day {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
  font-style: italic;
}
.next-event-month {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.6;
  font-weight: 500;
}
.next-event-info { flex: 1; min-width: 0; }
.next-event-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.next-event-info p {
  font-size: 0.83rem;
  color: var(--text-muted);
}

/* ===== BENTO GRID ===== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 32px 40px;
  max-width: 1440px;
  margin: 0 auto;
}

/* ===== CARDS ===== */
.card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--t);
  position: relative;
  overflow: hidden;
  animation: cardIn 0.5s ease both;
}
.card:hover { box-shadow: var(--shadow-hover); border-color: transparent; transform: translateY(-3px); }

.card-ink   { background: var(--ink);   color: white; border-color: transparent; }
.card-ink-2 { background: var(--ink-2); color: white; border-color: transparent; }
.card-dark  { background: var(--ink-3); color: white; border-color: transparent; }
.card-copper { background: var(--copper); color: white; border-color: transparent; }
.card-silver { background: var(--ivory-2); border-color: var(--border); }
.card-navy   { background: var(--ink);   color: white; border-color: transparent; }
.card-navy-2 { background: var(--ink-2); color: white; border-color: transparent; }
.card-gold   { background: var(--copper); color: white; border-color: transparent; }

/* Span helpers */
.col-2 { grid-column: span 2; }
.col-3 { grid-column: span 3; }
.col-4 { grid-column: span 4; }
.row-2 { grid-row: span 2; }
.row-3 { grid-row: span 3; }

/* Stagger animation delays */
.card:nth-child(1)  { animation-delay: 0.04s; }
.card:nth-child(2)  { animation-delay: 0.08s; }
.card:nth-child(3)  { animation-delay: 0.12s; }
.card:nth-child(4)  { animation-delay: 0.16s; }
.card:nth-child(5)  { animation-delay: 0.20s; }
.card:nth-child(6)  { animation-delay: 0.24s; }
.card:nth-child(7)  { animation-delay: 0.28s; }
.card:nth-child(8)  { animation-delay: 0.32s; }
.card:nth-child(9)  { animation-delay: 0.36s; }
.card:nth-child(10) { animation-delay: 0.40s; }
.card:nth-child(11) { animation-delay: 0.44s; }

/* ===== GEAR DECORATION ===== */
.gear-bg {
  position: absolute;
  right: -50px; bottom: -50px;
  width: 180px; height: 180px;
  opacity: 0.04;
  animation: spin 28s linear infinite;
  pointer-events: none;
}
.gear-bg.top-left { right: auto; bottom: auto; left: -50px; top: -50px; }
.gear-bg.small { width: 110px; height: 110px; right: -28px; bottom: -28px; }

/* ===== SECTION LABEL / KICKER ===== */
.section-label {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
}
.section-label::before {
  content: '';
  width: 14px; height: 1px;
  background: var(--copper);
  display: block;
  flex-shrink: 0;
}
.card-ink .section-label,
.card-ink-2 .section-label,
.card-dark .section-label,
.card-navy .section-label,
.card-navy-2 .section-label { color: rgba(255,255,255,0.38); }
.card-ink .section-label::before,
.card-ink-2 .section-label::before,
.card-dark .section-label::before,
.card-navy .section-label::before,
.card-navy-2 .section-label::before { background: var(--copper-light); }
.card-copper .section-label,
.card-gold .section-label { color: rgba(255,255,255,0.5); }
.card-copper .section-label::before,
.card-gold .section-label::before { background: rgba(255,255,255,0.5); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  transition: var(--t);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--ink); color: white;
  box-shadow: 0 2px 8px rgba(28,25,23,0.25);
}
.btn-primary:hover { background: var(--ink-2); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(28,25,23,0.3); }

.btn-copper {
  background: var(--copper); color: white;
  box-shadow: 0 2px 12px rgba(184,114,46,0.35);
}
.btn-copper:hover { background: var(--copper-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(184,114,46,0.4); }

.btn-gold { background: var(--copper); color: white; box-shadow: 0 2px 12px rgba(184,114,46,0.35); }
.btn-gold:hover { background: var(--copper-dark); transform: translateY(-2px); }

.btn-white { background: white; color: var(--ink); }
.btn-white:hover { background: var(--ivory); transform: translateY(-2px); }

.btn-outline {
  background: transparent; color: var(--ink);
  border: 1.5px solid rgba(28,25,23,0.25);
}
.btn-outline:hover { background: var(--ink); color: white; border-color: var(--ink); }

.btn-outline-ink {
  background: transparent; color: var(--ink);
  border: 1.5px solid rgba(28,25,23,0.2);
}
.btn-outline-ink:hover { background: var(--ink); color: white; border-color: var(--ink); }

.btn-outline-white {
  background: transparent; color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.28);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); color: white; }

.btn-ghost {
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9);
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); }

.btn-ghost-light {
  background: transparent; color: rgba(255,255,255,0.8);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); color: white; }

.btn-sm  { padding: 8px 16px; font-size: 0.78rem; }
.btn-lg  { padding: 14px 32px; font-size: 0.95rem; font-weight: 500; }
.btn-full { width: 100%; }
.btn-danger { background: #c0392b; color: white; }
.btn-danger:hover { background: #a93226; }

/* ===== BADGE ===== */
.badge {
  display: inline-block;
  padding: 3px 11px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.badge-navy   { background: rgba(28,25,23,0.09); color: var(--ink); }
.badge-ink    { background: rgba(28,25,23,0.09); color: var(--ink); }
.badge-gold   { background: var(--copper); color: white; }
.badge-copper { background: var(--copper); color: white; }
.badge-green  { background: rgba(34,197,94,0.12); color: #166534; }
.badge-silver { background: rgba(28,25,23,0.07); color: var(--chrome); }
.badge-light  { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
.badge-outline { border: 1.5px solid rgba(255,255,255,0.35); color: white; background: transparent; }

/* ===== AFFICHE CARD ===== */
.card-affiche { box-shadow: var(--shadow-md) !important; border: none !important; }
.card-affiche img { transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1); }
.card-affiche:hover img { transform: scale(1.04); }
.affiche-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(12,10,8,0.95) 0%, rgba(12,10,8,0.5) 55%, transparent 100%);
  padding: 32px 24px 24px;
  border-radius: 0 0 var(--radius) var(--radius);
}

/* ===== FORMS ===== */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-label {
  font-size: 0.78rem; font-weight: 500; color: var(--text-muted);
  letter-spacing: 0.03em; font-family: var(--font-body);
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  background: white;
  color: var(--text);
  transition: var(--t);
  outline: none;
  appearance: none;
  font-family: var(--font-body);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(184,114,46,0.12);
}
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b6057' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; cursor: pointer;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== NEWSLETTER POPUP ===== */
.nl-popup {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  width: 360px;
  background: var(--ink-3);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-dark);
  color: white;
  transform: translateY(calc(100% + 40px));
  opacity: 0;
  transition: all 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(255,255,255,0.06);
}
.nl-popup.visible { transform: translateY(0); opacity: 1; }
.nl-popup-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.55);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; cursor: pointer; transition: var(--t);
}
.nl-popup-close:hover { background: rgba(255,255,255,0.16); color: white; }
.nl-popup-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  animation: pulse 2.8s ease infinite;
  display: block;
}
.nl-popup h3 {
  font-size: 1.2rem; margin-bottom: 8px;
  font-family: var(--font-display);
  font-style: italic;
}
.nl-popup p { font-size: 0.83rem; color: rgba(255,255,255,0.55); margin-bottom: 20px; line-height: 1.65; }
.nl-popup .form-input {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
  color: white;
  margin-bottom: 10px;
}
.nl-popup .form-input::placeholder { color: rgba(255,255,255,0.35); }
.nl-popup .form-input:focus { border-color: var(--copper-light); background: rgba(255,255,255,0.1); box-shadow: 0 0 0 3px rgba(184,114,46,0.2); }
.nl-popup-success { text-align: center; padding: 16px 0; }
.nl-popup-success .success-icon { font-size: 2.8rem; margin-bottom: 12px; }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--ink-3);
  color: white;
  padding: 12px 26px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  z-index: 99999;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  pointer-events: none;
  font-family: var(--font-body);
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.success { background: #166534; }
.toast.error { background: #c0392b; }

/* ===== FOOTER ===== */
.footer {
  background: var(--ink-3);
  color: white;
  padding: 72px 40px 36px;
  margin-top: 64px;
  border-top: 3px solid var(--copper);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer-brand-text {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  line-height: 1.85;
}
.footer-col-title {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.58);
  font-size: 0.87rem;
  padding: 5px 0;
  transition: var(--t);
}
.footer-col a:hover { color: var(--copper-light); padding-left: 4px; }
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-brand-logo {
  display: block;
  box-sizing: content-box; /* padding ne compresse PAS l'image */
  width: 120px;
  height: auto;
  background: rgba(250, 246, 238, 0.96);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.28);
  font-size: 0.78rem;
}
.social-links { display: flex; gap: 8px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: var(--t); color: rgba(255,255,255,0.6);
}
.social-link:hover { background: var(--copper); border-color: var(--copper); color: white; transform: translateY(-2px); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--ink);
  color: white;
  padding: 80px 40px 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--copper), transparent);
  opacity: 0.5;
}
.page-hero-navy { background: var(--ink); }
.page-hero-inner { max-width: 720px; position: relative; z-index: 1; }
.page-hero p { color: rgba(255,255,255,0.55); margin-top: 14px; font-size: 1rem; line-height: 1.75; font-weight: 300; }
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-style: italic;
  letter-spacing: -0.02em;
}
.page-hero-content { max-width: 1280px; margin: 0 auto; }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 20px;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%; max-width: 560px;
  max-height: 90vh; overflow-y: auto;
  transform: scale(0.94) translateY(20px);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid var(--border);
}
.modal-overlay.active .modal { transform: scale(1) translateY(0); }
.modal-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.modal-close {
  color: var(--text-muted); font-size: 1.3rem; cursor: pointer;
  transition: var(--t); padding: 4px; line-height: 1;
}
.modal-close:hover { color: var(--text); }

/* ===== CALENDAR ===== */
.calendar-nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.cal-arrow {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-dark);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--t); font-size: 0.9rem; color: var(--text-muted);
}
.cal-arrow:hover { background: var(--ink); color: white; border-color: var(--ink); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal-day-label {
  text-align: center; padding: 7px 4px;
  font-size: 0.65rem; font-weight: 600;
  color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.04em;
  font-family: var(--font-body);
}
.cal-day {
  aspect-ratio: 1; border-radius: 6px;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  padding: 5px 2px 2px; font-size: 0.8rem;
  cursor: default; transition: var(--t);
  font-family: var(--font-body);
}
.cal-day:hover { background: var(--ivory-2); }
.cal-day.other-month { opacity: 0.22; }
.cal-day.has-event { background: rgba(184,114,46,0.08); cursor: pointer; }
.cal-day.has-event:hover { background: rgba(184,114,46,0.16); }
.cal-day.today { background: var(--ink); color: white; font-weight: 600; }
.cal-day.today:hover { background: var(--ink-2); }
.cal-dot { width: 4px; height: 4px; border-radius: 50%; margin-top: 2px; }
.cal-dot.sortie { background: var(--ink-2); }
.cal-dot.rassemblement { background: var(--copper); }
.cal-dot.autre { background: var(--chrome-light); }
.cal-day.today .cal-dot { background: var(--copper-light); }

/* Event items */
.event-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 20px 24px;
  background: white;
  border-radius: var(--radius);
  margin-bottom: 10px;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border);
  transition: var(--t);
  border-left: 3px solid transparent;
  cursor: pointer;
}
.event-item:hover { transform: translateX(4px); box-shadow: var(--shadow-md); border-color: transparent; }
.event-item.sortie { border-left-color: var(--ink-2); }
.event-item.rassemblement { border-left-color: var(--copper); }
.event-item.autre { border-left-color: var(--chrome-light); }

.event-date-block {
  min-width: 58px; text-align: center;
  background: var(--ivory-2);
  border-radius: var(--radius-sm);
  padding: 10px 8px; flex-shrink: 0;
}
.event-day {
  font-family: var(--font-display);
  font-size: 1.7rem; font-weight: 700;
  color: var(--ink); line-height: 1;
  font-style: italic;
}
.event-month {
  font-size: 0.66rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600;
  font-family: var(--font-body);
}
.event-info { flex: 1; min-width: 0; }
.event-info h3 { margin-bottom: 4px; font-size: 1.05rem; }
.event-info .event-meta {
  font-size: 0.8rem; color: var(--text-muted); margin-bottom: 6px;
  display: flex; gap: 14px; flex-wrap: wrap;
}
.event-info p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; }
.event-item.past { opacity: 0.5; }

/* ===== MARKETPLACE ===== */
.filter-bar {
  display: flex; gap: 6px; flex-wrap: wrap;
  padding: 0 40px 4px;
}
.filter-btn {
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 0.78rem; font-weight: 500;
  background: white; color: var(--text-muted);
  box-shadow: var(--shadow-xs);
  border: 1.5px solid var(--border-dark);
  transition: var(--t); cursor: pointer;
  font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--ink); color: white; border-color: var(--ink);
  box-shadow: var(--shadow);
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
  padding: 24px 40px;
}
.listing-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--t);
  animation: cardIn 0.4s ease both;
}
.listing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: transparent; }
.listing-img {
  width: 100%;
  overflow: hidden;
}
.listing-body { padding: 20px 22px; }
.listing-price {
  font-family: var(--font-display);
  font-size: 1.55rem; font-weight: 700;
  color: var(--ink); margin: 8px 0 4px;
  font-style: italic;
}
.listing-title { font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.listing-desc {
  font-size: 0.82rem; color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden; margin-bottom: 16px;
  line-height: 1.6;
}
.listing-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px; border-top: 1px solid var(--border);
  font-size: 0.78rem; color: var(--text-muted);
}

/* Empty state */
.empty-state {
  text-align: center; padding: 72px 40px;
  color: var(--text-muted);
}
.empty-state .empty-icon { font-size: 3.5rem; margin-bottom: 16px; opacity: 0.3; }
.empty-state h3 { color: var(--text); margin-bottom: 8px; font-size: 1.2rem; }
.empty-state p { font-size: 0.88rem; line-height: 1.7; max-width: 380px; margin: 0 auto; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-info-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 24px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border);
  transition: var(--t);
}
.contact-info-item:hover { transform: translateX(3px); box-shadow: var(--shadow-md); border-color: transparent; }
.contact-icon {
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  background: var(--ivory-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-info-item h4 {
  font-size: 0.7rem; color: var(--text-faint); margin-bottom: 3px;
  text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-body);
}
.contact-info-item p, .contact-info-item a {
  font-size: 0.93rem; font-weight: 500; color: var(--text);
}
.contact-info-item a:hover { color: var(--copper); }
.map-placeholder {
  background: var(--ivory-2); border-radius: var(--radius);
  height: 280px; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.9rem; gap: 12px;
}

/* ===== ADMIN ===== */
body.admin-body { background: var(--ivory); }
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 256px; min-height: 100vh;
  background: var(--ink-3);
  position: fixed; top: 0; left: 0;
  padding: 0; display: flex; flex-direction: column;
  z-index: 100; overflow-y: auto;
  border-right: 1px solid rgba(255,255,255,0.04);
}
.admin-sidebar-header {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 8px;
}
.admin-sidebar-logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 4px;
}
.admin-sidebar-logo img { height: 34px; filter: brightness(0) invert(1); }
.admin-sidebar-logo-fallback {
  width: 34px; height: 34px; background: var(--copper); border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; color: white;
}
.admin-sidebar-title {
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  color: white; font-style: italic;
}
.admin-sidebar-sub { font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-top: 2px; }
.admin-nav { padding: 6px 10px; flex: 1; }
.admin-nav-item {
  display: flex; align-items: center; gap: 11px;
  padding: 10px 13px; border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem; font-weight: 400;
  transition: var(--t); cursor: pointer; margin-bottom: 2px;
}
.admin-nav-item:hover { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.88); }
.admin-nav-item.active { background: var(--copper); color: white; }
.admin-nav-item .nav-icon { font-size: 1rem; width: 20px; text-align: center; }
.admin-sidebar-footer {
  padding: 14px 10px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.admin-main {
  margin-left: 256px;
  padding: 40px;
  min-height: 100vh;
  flex: 1;
}
.admin-topbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 36px; padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.admin-section { display: none; }
.admin-section.active { display: block; }
.admin-table {
  width: 100%; border-collapse: collapse;
  background: white; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.admin-table th {
  text-align: left; padding: 13px 18px;
  background: var(--ivory); font-size: 0.7rem;
  font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.1em;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-body);
}
.admin-table td {
  padding: 15px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 0.86rem; vertical-align: middle;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--ivory); }
.admin-card {
  background: white; border-radius: var(--radius); padding: 30px;
  box-shadow: var(--shadow-sm); margin-bottom: 24px;
  border: 1px solid var(--border);
}
.admin-card-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px;
}
.settings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Login screen */
.login-screen {
  min-height: 100vh; background: var(--ink-3);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.login-box {
  background: white; border-radius: var(--radius-xl);
  padding: 48px; width: 100%; max-width: 420px;
  text-align: center; box-shadow: var(--shadow-dark);
}
.login-logo { margin: 0 auto 28px; }
.login-logo img { height: 76px; margin: 0 auto; }
.login-logo-fallback {
  width: 76px; height: 76px; background: var(--ink);
  border-radius: 18px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: white;
  font-style: italic;
}
.login-box h2 { margin-bottom: 8px; font-style: italic; }
.login-box p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 32px; }
.login-error { color: #c0392b; font-size: 0.83rem; margin-top: 12px; display: none; }
.login-error.show { display: block; }

/* ===== ARTICLES MINI ===== */
.articles-mini-grid { display: flex; flex-direction: column; gap: 10px; }
.article-mini-card {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--ivory-2);
  border-left: 2px solid var(--copper);
  transition: var(--t);
  cursor: pointer;
}
.article-mini-card:hover { background: var(--ivory-3); transform: translateX(3px); }
.article-mini-date {
  font-size: 0.68rem; color: var(--text-faint);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 4px; font-family: var(--font-body);
}
.article-mini-title { font-size: 0.9rem; font-weight: 600; color: var(--text); }

/* ===== ARTICLE PAGE ===== */
.article-hero {
  background: var(--ink); color: white;
  padding: 88px 40px 56px;
  position: relative;
  overflow: hidden;
}
.article-hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  line-height: 1.12; margin-bottom: 18px;
  font-style: italic;
}
.article-content { max-width: 780px; margin: 0 auto; padding: 56px 24px; overflow-wrap: break-word; word-break: break-word; }
.article-content h2 {
  font-size: 1.5rem; margin: 36px 0 14px;
  color: var(--ink); font-style: italic;
}
.article-content p { line-height: 1.85; color: var(--text-muted); margin-bottom: 18px; overflow-wrap: break-word; word-break: break-word; }
.article-content ul { padding-left: 20px; line-height: 1.85; color: var(--text-muted); margin-bottom: 18px; }
.article-content img { width: 100%; border-radius: var(--radius); margin: 28px 0; }
.article-image-hero {
  width: 100%; max-width: 580px; margin: 0 auto 52px;
  display: block; border-radius: var(--radius); box-shadow: var(--shadow-md);
}

/* ===== ANNONCE PAGE ===== */
.annonce-hero { background: var(--ink); color: white; padding: 88px 40px 56px; }
.annonce-content { max-width: 940px; margin: 0 auto; padding: 48px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
@media(max-width:640px) { .annonce-content { grid-template-columns: 1fr; } }

/* ===== ADMIN GALLERY — DROPZONE ===== */
.photo-dropzone {
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  border: 2.5px dashed var(--border-dark);
  border-radius: var(--radius);
  margin: 16px;
  gap: 8px;
  background: var(--ivory);
  user-select: none;
}
.photo-dropzone:hover,
.photo-dropzone.dz-over {
  background: rgba(184,114,46,0.06);
  border-color: var(--copper);
}
.photo-dropzone.dz-over {
  transform: scale(1.01);
}
.photo-dropzone-icon { font-size: 3rem; line-height: 1; pointer-events: none; }
.photo-dropzone-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  font-style: italic;
  color: var(--ink);
  pointer-events: none;
}
.photo-dropzone-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  pointer-events: none;
}

/* Tuiles de progression upload */
.upload-tile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: var(--ivory);
  border: 1px solid var(--border);
  transition: var(--t);
}
.upload-tile-progress { border-color: rgba(184,114,46,0.3); background: rgba(184,114,46,0.04); }
.upload-tile-done     { border-color: rgba(34,197,94,0.25); background: rgba(34,197,94,0.04); }
.upload-tile-error    { border-color: rgba(220,38,38,0.25); background: rgba(220,38,38,0.04); }
.upload-tile-thumb {
  width: 52px; height: 52px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--ivory-2);
}
.upload-tile-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.upload-tile-thumb-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.upload-tile-info { flex: 1; min-width: 0; }
.upload-tile-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.upload-tile-status {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ===== ADMIN GALLERY ===== */
.gallery-admin-item .gallery-admin-overlay {
  position: absolute; inset: 0;
  background: rgba(12,10,8,0);
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  padding: 10px; transition: background 0.25s;
  opacity: 0;
}
.gallery-admin-item:hover .gallery-admin-overlay {
  background: rgba(12,10,8,0.75);
  opacity: 1;
}

/* ===== GALERIE ===== */
.gallery-page {
  max-width: 1360px; margin: 0 auto;
  padding: 44px 40px 88px;
}

.photos-masonry { columns: 4; column-gap: 14px; }
@media(max-width:1200px){ .photos-masonry { columns: 3; } }
@media(max-width:768px){ .photos-masonry { columns: 2; } }
@media(max-width:440px){ .photos-masonry { columns: 1; } }

.photo-item {
  break-inside: avoid; margin-bottom: 14px;
  border-radius: var(--radius-sm); overflow: hidden;
  cursor: pointer; position: relative;
  background: var(--ivory-2);
  transition: box-shadow 0.3s;
}
.photo-item:hover { box-shadow: var(--shadow-hover); }
.photo-item img {
  width: 100%; display: block;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
.photo-item:hover img { transform: scale(1.05); }
.photo-item-hover {
  position: absolute; inset: 0;
  background: rgba(12,10,8,0);
  transition: background 0.3s;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.photo-item:hover .photo-item-hover { background: rgba(12,10,8,0.22); }
.photo-zoom {
  color: white; font-size: 1.5rem;
  opacity: 0; transform: scale(0.7);
  transition: all 0.28s;
}
.photo-item:hover .photo-zoom { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  display: none; align-items: center; justify-content: center;
}
.lightbox.active { display: flex; animation: fadeIn 0.2s ease; }
.lightbox-backdrop {
  position: absolute; inset: 0;
  background: rgba(4,3,2,0.97);
  backdrop-filter: blur(16px);
  cursor: pointer;
}
.lightbox-content {
  position: relative; z-index: 1;
  max-width: calc(100vw - 160px);
  display: flex; flex-direction: column; align-items: center;
}
.lightbox-img-wrap {
  max-height: calc(100vh - 130px);
  display: flex; align-items: center; justify-content: center;
}
.lightbox-img-wrap img {
  max-width: calc(100vw - 160px); max-height: calc(100vh - 130px);
  object-fit: contain; border-radius: var(--radius-sm);
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
  animation: lbImgIn 0.22s ease;
}
.lightbox-close {
  position: fixed; top: 18px; right: 20px;
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%; color: white; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s; z-index: 2;
}
.lightbox-close:hover { background: rgba(255,255,255,0.16); }
.lightbox-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%; color: white; font-size: 1.7rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s; z-index: 2; user-select: none;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.16); }
#lightboxPrev { left: 16px; }
#lightboxNext { right: 16px; }
#lightboxPrev:hover { transform: translateY(-50%) translateX(-2px); }
#lightboxNext:hover { transform: translateY(-50%) translateX(2px); }
.lightbox-footer {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 14px 4px 0;
  color: rgba(255,255,255,0.45); font-size: 0.82rem;
}
#lightboxCounter { font-family: var(--font-display); font-size: 0.78rem; font-style: italic; }
#lightboxCaption { color: rgba(255,255,255,0.7); font-style: italic; }

/* ===== SECTION HELPERS ===== */
.section-eyebrow {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
}
.section-eyebrow::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--copper);
}

/* ===== KEYFRAMES ===== */
@keyframes cardIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes spin    { from { transform: rotate(0deg);  } to { transform: rotate(360deg); } }
@keyframes pulse   { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.07); } }
@keyframes float   { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes fadeUp  { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes lbImgIn { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }
@keyframes heroIn  { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

/* ===== LOGO HERO ===== */
.logo-hero {
  min-height: calc(100vh - 68px);
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 80px 40px;
}
.logo-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(184,114,46,0.08) 0%, transparent 62%),
    radial-gradient(ellipse at 20% 80%, rgba(184,114,46,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.logo-hero::after { display: none; }
.logo-hero-img {
  width: min(380px, 72vw);
  height: auto;
  position: relative;
  z-index: 1;
  animation: heroIn 1.1s cubic-bezier(0.34,1.1,0.64,1) both;
  filter: drop-shadow(0 12px 40px rgba(28,25,23,0.12));
}
.logo-hero-rule {
  width: 64px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--copper), transparent);
  margin: 30px auto 0;
  position: relative;
  z-index: 1;
  animation: heroIn 1.1s 0.15s cubic-bezier(0.34,1.1,0.64,1) both;
}
.logo-hero-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 18px;
  position: relative;
  z-index: 1;
  animation: heroIn 1.1s 0.22s cubic-bezier(0.34,1.1,0.64,1) both;
}
.logo-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 44px;
  position: relative;
  z-index: 1;
  animation: heroIn 1.1s 0.38s cubic-bezier(0.34,1.1,0.64,1) both;
}

/* ===== ARTICLES SECTION (homepage) ===== */
.articles-section {
  background: var(--ivory);
  padding: 80px 40px 72px;
}
.articles-section-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.articles-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 16px;
  flex-wrap: wrap;
}
.articles-section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-style: italic;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
/* Featured first card */
.articles-grid .article-card:first-child {
  grid-column: span 2;
}
.articles-grid .article-card:first-child .article-card-img {
  aspect-ratio: 21/9;
}
.articles-grid .article-card:first-child .article-card-title {
  font-size: 1.7rem;
}
/* Single article — no span */
.articles-grid:has(.article-card:only-child) .article-card:only-child,
.articles-grid.single .article-card:first-child {
  grid-column: span 1;
}

.article-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--t);
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.article-card-img {
  overflow: hidden;
  background: var(--ivory-2);
  position: relative;
  flex-shrink: 0;
}
.article-card-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s ease;
}
.article-card:hover .article-card-img img {
  transform: scale(1.02);
}
.article-card-img-placeholder {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  background: var(--ivory-2);
}
/* Featured first card — no extra aspect-ratio override needed */
.articles-grid .article-card:first-child .article-card-img {
  aspect-ratio: unset;
}
.article-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.article-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.article-card-date {
  font-size: 0.73rem;
  color: var(--text-faint);
  font-weight: 500;
  letter-spacing: 0.06em;
}
.article-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  font-style: italic;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 12px;
}
.article-card-excerpt {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.78;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-card-cta {
  margin-top: 22px;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--copper);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--t);
}
.article-card:hover .article-card-cta {
  color: var(--copper-dark);
  gap: 10px;
}

/* Balise GPS cachée dans le contenu des articles */
.gps-meta { display: none !important; }

/* ===== ARTICLE MAP (article detail page) ===== */
.article-map-section {
  max-width: 800px;
  margin: 48px auto 0;
  padding: 0 24px;
}
.article-map-section h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.article-map-section p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.article-map-iframe-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  position: relative;
}
.article-map-iframe-wrap iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}
.article-map-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.article-map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--copper);
  border: 1px solid rgba(184,114,46,0.3);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  transition: var(--t);
}
.article-map-link:hover {
  background: var(--copper);
  color: white;
  border-color: var(--copper);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .bento-grid { grid-template-columns: repeat(3, 1fr); }
  .col-4 { grid-column: span 3; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .admin-main { padding: 24px; }
  .site-hero-content { padding: 60px 40px 60px 48px; }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-grid .article-card:first-child { grid-column: span 2; }
}
@media (max-width: 900px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .col-2, .col-3, .col-4 { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .settings-grid { grid-template-columns: 1fr; }
  .site-hero { grid-template-columns: 1fr; min-height: auto; }
  .site-hero-visual { height: 380px; }
  .site-hero-content { padding: 64px 40px 56px; }
  .stats-strip-inner { flex-wrap: wrap; justify-content: center; }
  .stat-sep { display: none; }
  .stat-item { padding: 24px 32px; }
  .articles-grid { grid-template-columns: 1fr; }
  .articles-grid .article-card:first-child { grid-column: span 1; }
  .articles-grid .article-card:first-child .article-card-img { aspect-ratio: 16/9; }
  .articles-section { padding: 56px 24px 48px; }
}
@media (max-width: 680px) {
  .bento-grid { grid-template-columns: 1fr; padding: 16px; gap: 14px; }
  .col-2, .col-3, .col-4 { grid-column: span 1; }
  .row-2, .row-3 { grid-row: span 1; }
  .navbar { padding: 0 20px; height: 60px; }
  .page-wrapper { padding-top: 60px; }
  .nav-menu { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer { padding: 48px 24px 28px; margin-top: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .nl-popup { width: calc(100vw - 32px); right: 16px; bottom: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { padding: 20px 16px; }
  .listing-grid { padding: 12px 16px; }
  .filter-bar { padding: 0 16px; }
  .bento-grid { padding: 16px; }
  .site-hero-content { padding: 48px 24px 44px; }
  .site-hero h1 { font-size: 2.6rem; }
  .logo-hero { padding: 60px 24px; min-height: calc(100svh - 60px); }
  .logo-hero-img { width: min(280px, 78vw); }
  .articles-section { padding: 48px 16px 40px; }
  .articles-grid { gap: 16px; }
  .page-hero { padding: 60px 24px 40px; }
  .gallery-page { padding: 32px 16px 60px; }
  .admin-sidebar { width: 100%; min-height: auto; position: static; flex-direction: row; flex-wrap: wrap; }
  .admin-main { margin-left: 0; padding: 20px; }
  .next-event-strip { padding: 24px 20px; }
  .stats-strip-inner { padding: 0 20px; }
  .stat-item { padding: 20px 16px; }
  .stat-number { font-size: 2.6rem; }
}
@media (max-width: 640px) {
  .lightbox-content { max-width: calc(100vw - 32px); }
  .lightbox-img-wrap img { max-width: calc(100vw - 32px); }
  #lightboxPrev { left: 8px; } #lightboxNext { right: 8px; }
  .lightbox-nav { width: 38px; height: 38px; font-size: 1.3rem; }
  .annonce-content { padding: 32px 16px; }
}

/* ═══════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.72s cubic-bezier(0.16,1,0.3,1),
              transform 0.72s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-left  { opacity:0; transform:translateX(-28px); transition:opacity 0.7s cubic-bezier(0.16,1,0.3,1),transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal-left.visible { opacity:1; transform:none; }
.reveal-scale { opacity:0; transform:scale(0.94); transition:opacity 0.65s cubic-bezier(0.16,1,0.3,1),transform 0.65s cubic-bezier(0.16,1,0.3,1); }
.reveal-scale.visible { opacity:1; transform:none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal,.reveal-left,.reveal-scale { opacity:1;transform:none;transition:none; }
}

/* ═══════════════════════════════════════════════════
   COUNTDOWN
   ═══════════════════════════════════════════════════ */
.countdown-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 22px 0 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.countdown-label {
  width: 100%;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 8px;
}
.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--ink);
  color: var(--ivory);
  border-radius: 10px;
  padding: 12px 14px 8px;
  min-width: 62px;
}
.cd-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.cd-sep {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--copper);
  line-height: 1.1;
  align-self: flex-start;
  padding-top: 10px;
}
.cd-txt {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.5);
  margin-top: 4px;
}
@media (max-width: 420px) {
  .cd-unit { padding: 10px 10px 6px; min-width: 52px; }
  .cd-num  { font-size: 1.65rem; }
}

/* ═══════════════════════════════════════════════════
   SHARE BAR
   ═══════════════════════════════════════════════════ */
.share-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}
.share-bar-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-right: 4px;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.18s;
}
.share-btn:hover { transform: translateY(-2px); }
.share-btn-fb  { border-color:#1877f2; color:#1877f2; }
.share-btn-fb:hover  { background:#1877f2; color:#fff; }
.share-btn-wa  { border-color:#25d366; color:#25d366; }
.share-btn-wa:hover  { background:#25d366; color:#fff; }
.share-btn-copy { border-color:var(--copper); color:var(--copper); }
.share-btn-copy:hover { background:var(--copper); color:#fff; }

/* ═══════════════════════════════════════════════════
   SCROLL-TO-TOP BUTTON
   ═══════════════════════════════════════════════════ */
#scrollTopBtn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--ivory);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 18px rgba(28,25,23,0.22);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.28s, transform 0.28s;
  pointer-events: none;
  z-index: 900;
}
#scrollTopBtn.visible { opacity: 1; transform: none; pointer-events: all; }
#scrollTopBtn:hover { background: var(--copper); transform: translateY(-2px); }
@media (max-width: 680px) {
  #scrollTopBtn { bottom: 20px; right: 16px; width: 42px; height: 42px; }
}

/* ═══════════════════════════════════════════════════
   MOBILE FIXES
   ═══════════════════════════════════════════════════ */
@media (max-width: 680px) {
  /* Logo hero mobile */
  .logo-hero-actions { flex-direction: column; gap: 12px; width: 100%; max-width: 320px; }
  .logo-hero-actions .btn { width: 100%; justify-content: center; }

  /* Next event strip */
  .next-event-strip-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .next-event-date { flex-direction: row; gap: 8px; align-items: baseline; }

  /* Article content */
  .article-content { padding: 32px 16px 48px; }
  .article-hero { padding: 60px 16px 40px; }
  .article-map-section { margin: 0 16px 40px; padding: 24px 16px; }

  /* Annonce content */
  .annonce-content { grid-template-columns: 1fr; gap: 24px; }

  /* Marketplace */
  .listing-card { border-radius: var(--radius-sm); }

  /* Admin mobile */
  .admin-layout { flex-direction: column; }
  .admin-sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 12px 16px;
    gap: 6px;
    min-height: auto;
    position: sticky;
    top: 60px;
    z-index: 100;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .admin-nav-section { display: none; }
  .admin-nav-item {
    white-space: nowrap;
    padding: 8px 14px;
    font-size: 0.82rem;
    border-radius: 100px;
    flex-shrink: 0;
  }
  .admin-main { margin-left: 0; padding: 16px; }
  .admin-topbar { flex-direction: column; align-items: flex-start; gap: 12px; }
  .admin-table { font-size: 0.8rem; }
  .admin-table th, .admin-table td { padding: 8px 10px; }

  /* Share bar */
  .share-bar { gap: 8px; }
  .share-btn { padding: 7px 13px; font-size: 0.79rem; }

  /* Form improvements */
  .form-group { margin-bottom: 16px; }
  .btn-lg { padding: 14px 28px; font-size: 0.95rem; }
}
@media (max-width: 400px) {
  .cd-unit { min-width: 46px; padding: 8px 8px 5px; }
  .cd-num  { font-size: 1.45rem; }
  .cd-sep  { font-size: 1.4rem; }
}

/* ═══════════════════════════════════════════════════
   MEMBRES PAGE — benefit/feature components
   ═══════════════════════════════════════════════════ */
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.benefit-item:last-child { margin-bottom: 0; }
.benefit-icon-wrap {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.benefit-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: white;
}
.benefit-item p {
  font-size: 0.82rem;
  opacity: 0.6;
  line-height: 1.65;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}
.feature-check {
  color: var(--copper-light);
  font-weight: 700;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   COUNTDOWN DIGIT FLIP
   ═══════════════════════════════════════════════════ */
@keyframes cdFlip {
  0%   { transform: translateY(0)   scaleY(1);   opacity: 1;   }
  40%  { transform: translateY(-7px) scaleY(0.5); opacity: 0.2; }
  60%  { transform: translateY(7px)  scaleY(0.5); opacity: 0.2; }
  100% { transform: translateY(0)   scaleY(1);   opacity: 1;   }
}
.cd-num {
  display: inline-block;
  transform-origin: center;
}
.cd-num.flipping {
  animation: cdFlip 0.32s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* ═══════════════════════════════════════════════════
   TICKER STRIP
   ═══════════════════════════════════════════════════ */
.ticker-strip {
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  height: 44px;
  display: flex;
  align-items: center;
  position: relative;
}
.ticker-strip::before,
.ticker-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 64px;
  z-index: 2;
  pointer-events: none;
}
.ticker-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--ink), transparent);
}
.ticker-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--ink), transparent);
}
.ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: ticker 34s linear infinite;
  will-change: transform;
}
.ticker-inner:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.42);
}
.ticker-item strong {
  color: var(--copper-light);
  font-weight: 700;
  letter-spacing: 0.12em;
}
.ticker-sep {
  color: var(--copper);
  opacity: 0.45;
  font-size: 0.9em;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════
   SCROLL INDICATOR
   ═══════════════════════════════════════════════════ */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  z-index: 2;
  cursor: pointer;
  animation: heroIn 1.1s 0.6s cubic-bezier(0.34,1.1,0.64,1) both;
}
.scroll-indicator-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent 0%, var(--copper) 100%);
  transform-origin: top;
  animation: scrollLineAnim 2s ease-in-out infinite;
}
.scroll-indicator-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--copper);
  margin-top: 3px;
  animation: scrollDotAnim 2s ease-in-out infinite;
}
@keyframes scrollLineAnim {
  0%   { transform: scaleY(0); opacity: 0; }
  30%  { transform: scaleY(1); opacity: 1; }
  80%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}
@keyframes scrollDotAnim {
  0%,25% { opacity: 0; transform: translateY(-8px); }
  60%    { opacity: 1; transform: translateY(0); }
  90%    { opacity: 0; transform: translateY(4px); }
  100%   { opacity: 0; }
}

/* ═══════════════════════════════════════════════════
   LISTING PLACEHOLDER IMPROVED
   ═══════════════════════════════════════════════════ */
.listing-img {
  position: relative;
}
.listing-img-inner {
  width: 100%; height: 200px;
  background:
    linear-gradient(135deg,
      rgba(184,114,46,0.06) 0%,
      var(--ivory-2) 40%,
      rgba(184,114,46,0.04) 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}
.listing-img-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 18px,
    rgba(184,114,46,0.035) 18px,
    rgba(184,114,46,0.035) 19px
  );
}
.listing-img-inner .placeholder-icon {
  font-size: 1.8rem;
  opacity: 0.18;
  position: relative;
  z-index: 1;
  filter: grayscale(1);
}
.listing-img-inner img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 2;
}

/* ═══════════════════════════════════════════════════
   NAVBAR — BOUTON MEMBRE
   ═══════════════════════════════════════════════════ */
.nav-member-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--copper);
  color: #fff !important;
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: .03em;
  text-decoration: none !important;
  transition: var(--t);
  white-space: nowrap;
}
.nav-member-btn:hover {
  background: var(--copper-dark);
  color: #fff !important;
}
.nav-member-btn.is-logged-in {
  background: var(--ink);
  color: #fff !important;
}
.nav-member-btn.is-logged-in:hover {
  background: var(--ink-2);
}

/* ═══════════════════════════════════════════════════
   MEMBRES — PAGE AUTH (non connecté)
   ═══════════════════════════════════════════════════ */
.mem-hero-auth {
  background: linear-gradient(160deg, var(--ink-3) 0%, var(--ink-2) 60%, #2a1a0a 100%);
  padding: 100px 24px 72px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.mem-hero-auth::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(184,114,46,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 20% 80%, rgba(184,114,46,0.10) 0%, transparent 50%);
  pointer-events: none;
}
.mem-hero-auth-inner {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}
.mem-hero-auth .section-eyebrow,
.mem-hero-dash .section-eyebrow {
  justify-content: center;
}
.mem-hero-auth h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: white;
  margin-bottom: 16px;
}
.mem-hero-auth p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.7;
}

/* ── Auth layout ─────────────────────────────────── */
.mem-auth-layout {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 24px 80px;
  align-items: start;
}
@media (max-width: 860px) {
  .mem-auth-layout { grid-template-columns: 1fr; gap: 48px; }
}

/* ── Benefits column ─────────────────────────────── */
.mem-benefits-col { }
.mem-benefits-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
  font-family: var(--font-body);
}
.mem-benefits-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 40px;
}
.mem-benefits-title em {
  font-style: italic;
  color: var(--copper);
}
.mem-benefit-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}
.mem-benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.mem-benefit-icon {
  width: 44px;
  height: 44px;
  background: var(--ivory-2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper);
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.mem-benefit-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  font-family: var(--font-body);
}
.mem-benefit-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.mem-free-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(21,128,61,0.08);
  color: #15803d;
  border: 1px solid rgba(21,128,61,0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-body);
}

/* ── Auth card ───────────────────────────────────── */
.mem-auth-card-wrap {
  position: sticky;
  top: 100px;
}
.mem-auth-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 32px;
  border: 1px solid var(--border);
}
.mem-tabs {
  display: flex;
  background: var(--ivory-2);
  border-radius: var(--radius-sm);
  padding: 4px;
  margin-bottom: 28px;
  gap: 4px;
}
.mem-tab {
  flex: 1;
  padding: 9px 16px;
  border: none;
  background: transparent;
  border-radius: calc(var(--radius-sm) - 2px);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--t);
}
.mem-tab.active {
  background: white;
  color: var(--ink);
  box-shadow: var(--shadow-xs);
}
.mem-form-error {
  background: rgba(220,38,38,0.07);
  border: 1px solid rgba(220,38,38,0.2);
  color: #c0392b;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.85rem;
  font-family: var(--font-body);
  line-height: 1.5;
}
.mem-form-error.is-info {
  background: rgba(37,99,235,0.07);
  border-color: rgba(37,99,235,0.2);
  color: #1d4ed8;
}
.mem-switch-link {
  background: none;
  border: none;
  padding: 0;
  color: var(--copper);
  font-weight: 600;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── FAQ ─────────────────────────────────────────── */
.mem-faq-section {
  background: var(--ivory-2);
  padding: 64px 24px;
  border-top: 1px solid var(--border);
}
.mem-faq-section h3 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 36px;
  color: var(--ink);
}
.mem-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.mem-faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  cursor: pointer;
}
.mem-faq-item summary {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
}
.mem-faq-item summary::after {
  content: '+';
  color: var(--copper);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.mem-faq-item[open] summary::after { content: '−'; }
.mem-faq-item p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 10px;
}
.mem-faq-item a { color: var(--copper); }

/* ═══════════════════════════════════════════════════
   MEMBRES — DASHBOARD (connecté)
   ═══════════════════════════════════════════════════ */
.mem-hero-dash {
  background: linear-gradient(160deg, var(--ink-3) 0%, var(--ink-2) 100%);
  padding: 80px 24px 64px;
  color: white;
  position: relative;
  overflow: hidden;
}
.mem-hero-dash::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 70% 50%, rgba(184,114,46,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.mem-hero-dash-inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}
.mem-hero-dash h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  margin-bottom: 8px;
}
.mem-dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
@media (max-width: 860px) {
  .mem-dash-grid { grid-template-columns: 1fr; }
}
.mem-dash-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--t);
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.mem-dash-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--copper);
}
.mem-dash-card h3 {
  font-size: 1.05rem;
  color: var(--ink);
  margin: 0;
  font-family: var(--font-display);
}
.mem-dash-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  font-family: var(--font-body);
}
.mem-dash-card-icon {
  width: 52px;
  height: 52px;
  background: var(--ivory-2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper);
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.mem-dash-card-arrow {
  margin-top: auto;
  color: var(--copper);
  font-size: 1.2rem;
  font-weight: 600;
}
/* Profile card */
.mem-dash-profile {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}
.mem-dash-profile-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.mem-dash-avatar {
  width: 56px;
  height: 56px;
  background: var(--copper);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: .04em;
  font-family: var(--font-display);
  flex-shrink: 0;
}
.mem-dash-profile-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--font-body);
}
.mem-dash-profile-email {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  margin-top: 2px;
}
.mem-dash-profile-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  margin-bottom: 16px;
}
.mem-dash-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(21,128,61,0.08);
  color: #15803d;
  border: 1px solid rgba(21,128,61,0.2);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-body);
}
.btn-outline-white {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--t);
  font-family: var(--font-body);
  text-decoration: none;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.65);
  color: white;
}

/* ═══════════════════════════════════════════════════
   EVENT — ARTICLE LINK BADGE & ARROW
   ═══════════════════════════════════════════════════ */
.event-article-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--copper);
  background: rgba(184,114,46,0.10);
  border: 1px solid rgba(184,114,46,0.25);
  border-radius: 20px;
  padding: 3px 9px;
  font-family: var(--font-body);
}
.event-arrow {
  flex-shrink: 0;
  color: var(--text-muted);
  font-size: 1.2rem;
  align-self: center;
  line-height: 1;
  display: flex;
  align-items: center;
}
.event-arrow-article {
  color: var(--copper);
}
.event-item.has-article {
  cursor: pointer;
}
.event-item.has-article:hover .event-arrow-article {
  transform: translate(2px, -2px);
  transition: transform 0.2s ease;
}
/* btn-light pour la featured card (fond blanc semi-transparent) */
.btn-light {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--t);
  font-family: var(--font-body);
}
.btn-light:hover {
  background: rgba(255,255,255,0.28);
  border-color: rgba(255,255,255,0.55);
}

/* ═══════════════════════════════════════════════════
   PHOTO UPLOAD ZONE (marketplace add listing form)
   ═══════════════════════════════════════════════════ */
.photo-upload-zone {
  border: 1.5px dashed var(--border-dark);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--t);
  overflow: hidden;
  background: var(--ivory-2);
}
.photo-upload-zone:hover,
.photo-upload-zone.dragging {
  border-color: var(--copper);
  background: rgba(184,114,46,0.05);
}
.photo-upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
  gap: 6px;
  user-select: none;
}
.photo-upload-icon {
  font-size: 2rem;
  opacity: 0.4;
  line-height: 1;
}
.photo-upload-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-body);
}
.photo-upload-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-body);
}
.photo-upload-preview {
  position: relative;
}
.photo-upload-preview img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  display: block;
}
.photo-remove-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(28,25,23,0.72);
  color: white;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t);
  line-height: 1;
}
.photo-remove-btn:hover {
  background: var(--ink);
}

/* ═══════════════════════════════════════════════════
   PAGE FADE-IN
   ═══════════════════════════════════════════════════ */
@keyframes pageIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body {
  animation: pageIn 0.38s ease both;
}
@media (prefers-reduced-motion: reduce) {
  body { animation: none; }
  .ticker-inner { animation: none; }
  .scroll-indicator { display: none; }
}

/* ═══════════════════════════════════════════════════
   MULTI-PHOTO UPLOAD ZONE (marketplace)
   ═══════════════════════════════════════════════════ */
.photos-drop-zone {
  border: 1.5px dashed var(--border-dark);
  border-radius: var(--radius-sm);
  background: var(--ivory-2);
  transition: var(--t);
  cursor: pointer;
  padding: 12px 12px 8px;
  min-height: 90px;
}
.photos-drop-zone:hover,
.photos-drop-zone.dragging {
  border-color: var(--copper);
  background: rgba(184,114,46,0.04);
}
.photos-thumbs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}
.photo-thumb {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--border);
}
.photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-thumb-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  background: rgba(28,25,23,0.75);
  color: white;
  border: none;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: 0.65rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: var(--t);
  z-index: 2;
}
.photo-thumb-remove:hover {
  background: rgba(220,38,38,0.85);
}
.photo-thumb-main {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(184,114,46,0.85);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
  padding: 2px 0;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.photo-thumb-add {
  width: 80px;
  height: 80px;
  border: 1.5px dashed var(--border-dark);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.8rem;
  color: var(--text-muted);
  transition: var(--t);
  gap: 2px;
  font-family: var(--font-body);
  background: transparent;
  flex-shrink: 0;
}
.photo-thumb-add span:last-child {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  line-height: 1;
}
.photo-thumb-add:hover {
  border-color: var(--copper);
  color: var(--copper);
}
.photos-count-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  text-align: center;
  padding-bottom: 4px;
}

/* Photo count badge on listing card */
.listing-img {
  position: relative;
}
.listing-photo-count {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(28,25,23,0.72);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  font-family: var(--font-body);
  padding: 3px 8px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════
   LISTING GALLERY (annonce.html)
   ═══════════════════════════════════════════════════ */
.listing-gallery {
  margin-bottom: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}
.gallery-main {
  position: relative;
  background: var(--ink);
  aspect-ratio: 4/3;
  overflow: hidden;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s ease;
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(28,25,23,0.62);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s ease;
  z-index: 2;
  backdrop-filter: blur(4px);
}
.gallery-arrow:hover {
  background: rgba(184,114,46,0.85);
}
.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }
.gallery-counter {
  position: absolute;
  bottom: 10px;
  right: 12px;
  background: rgba(28,25,23,0.6);
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  pointer-events: none;
}
.gallery-thumbs {
  display: flex;
  gap: 4px;
  background: var(--ink);
  padding: 4px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--copper) transparent;
}
.gallery-thumb {
  width: 68px;
  height: 52px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.18s ease, outline 0.18s ease;
  flex-shrink: 0;
  outline: 2px solid transparent;
}
.gallery-thumb:hover {
  opacity: 0.85;
}
.gallery-thumb.active {
  opacity: 1;
  outline-color: var(--copper);
}

/* ── Bouton zoom sur galerie ── */
.gallery-zoom-btn {
  position: absolute;
  bottom: 10px;
  left: 12px;
  background: rgba(28,25,23,0.62);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s;
  z-index: 2;
  backdrop-filter: blur(4px);
}
.gallery-zoom-btn:hover { background: rgba(184,114,46,0.85); }

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10,8,7,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  backdrop-filter: blur(6px);
}
.lightbox.open,
.lightbox.active {
  opacity: 1;
  pointer-events: all;
}
.lightbox-img-wrap {
  max-width: 94vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.lightbox-img-wrap img {
  max-width: 94vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 12px 64px rgba(0,0,0,0.7);
  display: block;
  user-select: none;
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s;
  z-index: 2;
}
.lightbox-close:hover { background: rgba(184,114,46,0.7); }
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s;
  z-index: 3;
}
.lightbox-arrow:hover { background: rgba(184,114,46,0.7); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.65);
  font-size: 0.8rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.08em;
  pointer-events: none;
}
.gallery-main { cursor: zoom-in; }
