/* ============================================
   PAT'JAUNE — V3 Éditorial Cinématographique
   Inspiration : Aman, Aesop, Belmond, Cheval Blanc
============================================ */

/* ============================================
   FONTS AUTO-HÉBERGÉES — 0 requête Google
============================================ */
/* Cormorant Garamond — normal (latin-ext) */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('fonts/cormorant-garamond-normal-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Cormorant Garamond — normal (latin) */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('fonts/cormorant-garamond-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Cormorant Garamond — italique (latin-ext) */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300 500;
  font-display: swap;
  src: url('fonts/cormorant-garamond-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Cormorant Garamond — italique (latin) */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300 500;
  font-display: swap;
  src: url('fonts/cormorant-garamond-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Inter — normal (latin-ext) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('fonts/inter-normal-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Inter — normal (latin) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('fonts/inter-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: all 0.4s cubic-bezier(0.4,0,0.2,1); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* === VARIABLES === */
:root {
  --paper:        #F0E9DD;
  --paper-soft:   #F7F1E6;
  --paper-deep:   #E8DFD0;
  --ink:          #1A130B;
  --ink-2:        #2B2017;
  --espresso:     #0F0B06;
  --ochre:        #A87E3D;
  --ochre-light:  #C9A064;
  --ochre-deep:   #855F26;
  --oxblood:      #6B2D1F;
  --bone:         #E8DBC6;
  --muted:        #6B5A45;
  --light:        #A89580;
  --border:       rgba(26, 19, 11, 0.1);
  --border-soft:  rgba(26, 19, 11, 0.06);
}

/* === LAYOUT === */
.container { width: 100%; max-width: 1340px; margin: 0 auto; padding: 0 40px; }
.container-narrow { width: 100%; max-width: 1000px; margin: 0 auto; padding: 0 40px; }
.container-tight { width: 100%; max-width: 720px; margin: 0 auto; padding: 0 40px; }
.section { padding: 160px 0; }
@media (max-width: 768px) { .section { padding: 100px 0; } .container, .container-narrow, .container-tight { padding: 0 24px; } }

/* === TYPOGRAPHIE === */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
}
em, .italic { font-style: italic; font-weight: 400; }

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}
.eyebrow-light { color: rgba(232,219,198,0.6); }
.eyebrow-gold { color: var(--ochre); }

.display-1 { font-size: clamp(3.5rem, 10vw, 8rem); font-weight: 300; letter-spacing: -0.025em; }
.display-2 { font-size: clamp(2.5rem, 6.5vw, 5.5rem); font-weight: 300; letter-spacing: -0.02em; }
.display-3 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 400; letter-spacing: -0.015em; }

.section-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  font-weight: 400;
  color: var(--ochre);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  display: block;
}

.section-title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 28px;
  color: var(--ink);
}
.section-title em { color: var(--ochre); }
.section-title-light { color: var(--bone); }
.section-title-light em { color: var(--ochre-light); }

.lead-large {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  line-height: 1.5;
  color: var(--ink-2);
  font-weight: 400;
}

p { color: var(--muted); font-size: 1rem; line-height: 1.85; }
.p-large { font-size: 1.08rem; }
.p-light { color: rgba(232,219,198,0.7); }

/* === BOUTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding-bottom: 6px;
  transition: all 0.3s;
  cursor: pointer;
}
.btn::after {
  content: '';
  position: absolute; left: 0; right: 40px; bottom: 0;
  height: 1px; background: currentColor;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
}
.btn:hover::after { right: 0; }
.btn svg { transition: transform 0.4s; }
.btn:hover svg { transform: translateX(6px); }
.btn-light { color: var(--bone); }
.btn-ochre { color: var(--ochre); }

.btn-fill {
  background: var(--ink);
  color: var(--bone);
  padding: 18px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 12px;
  transition: all 0.3s;
  border-radius: 0;
}
.btn-fill::after { display: none; }
.btn-fill:hover { background: var(--ochre); transform: translateY(-2px); }
.btn-fill-light { background: var(--bone); color: var(--ink); }
.btn-fill-light:hover { background: #fff; }
.btn-fill-ochre { background: var(--ochre); color: #fff; }
.btn-fill-ochre:hover { background: var(--ochre-deep); }

/* === HEADER === */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all 0.5s ease;
  padding: 0 16px;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 30px 24px;
  transition: padding 0.5s ease, border-color 0.5s ease;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(240, 233, 221, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.header.scrolled .header-inner { padding: 18px 24px; border-bottom-color: var(--border-soft); }

.logo { text-decoration: none; }
.logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--bone);
  letter-spacing: 0.01em;
  transition: color 0.4s;
}
.logo-main em { font-style: italic; color: var(--ochre-light); }
.header.scrolled .logo-main { color: var(--ink); }
.header.scrolled .logo-main em { color: var(--ochre); }

.nav { display: flex; align-items: center; gap: 40px; }
.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  color: rgba(232,219,198,0.85);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}
.header.scrolled .nav-link { color: var(--muted); }
.nav-link::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover { color: var(--bone); }
.nav-link.active { color: var(--bone); }
.header.scrolled .nav-link:hover, .header.scrolled .nav-link.active { color: var(--ink); }

.header-right { display: flex; align-items: center; gap: 28px; }

.lang-switcher { display: flex; gap: 8px; align-items: center; }
.lang-btn {
  background: none; border: none;
  color: rgba(232,219,198,0.5);
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em;
  cursor: pointer;
  transition: color 0.3s;
  padding: 0;
}
.lang-btn:hover { color: var(--bone); }
.lang-btn.active { color: var(--ochre-light); }
.lang-btn:not(:last-child)::after { content: '·'; margin-left: 8px; color: rgba(232,219,198,0.3); }
.header.scrolled .lang-btn { color: var(--light); }
.header.scrolled .lang-btn:hover { color: var(--ink); }
.header.scrolled .lang-btn.active { color: var(--ochre); }

.btn-cta-header {
  padding: 12px 26px;
  border: 1px solid rgba(232,219,198,0.4);
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
  transition: all 0.3s;
}
.btn-cta-header:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.header.scrolled .btn-cta-header { border-color: var(--ink); color: var(--ink); }
.header.scrolled .btn-cta-header:hover { background: var(--ink); color: var(--bone); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 1px; background: var(--bone); transition: 0.3s; }
.header.scrolled .hamburger span { background: var(--ink); }

@media (max-width: 1000px) {
  .nav {
    display: none; position: fixed; top: 72px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    padding: 32px 40px;
    background: var(--paper);
    transform: translateY(-110%);
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
    border-bottom: 1px solid var(--border-soft);
  }
  .nav.open { transform: translateY(0); display: flex; }
  .nav-link { color: var(--ink); padding: 20px 0; width: 100%; border-bottom: 1px solid var(--border-soft); }
  .nav-link:last-of-type { border-bottom: none; }
  .nav-link::after { display: none; }
  .hamburger { display: flex; }
  .btn-cta-header { display: none; }
}

/* ============================================
   HERO — Cinéma plein écran
============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--bone);
}
.hero-bg {
  position: absolute;
  top: -15%; left: 0; right: 0;
  height: 130%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.75);
  z-index: 0;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,11,6,0.65) 0%,
    rgba(15,11,6,0.15) 30%,
    rgba(15,11,6,0.1) 60%,
    rgba(15,11,6,0.75) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%;
  padding: 0 64px 100px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
}
@media (max-width: 900px) {
  .hero-content { padding: 0 24px 80px; grid-template-columns: 1fr; gap: 40px; }
}
.hero-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(232,219,198,0.8);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 20px;
}
.hero-meta-rule { width: 36px; height: 1px; background: var(--ochre-light); }
.hero-title-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 11vw, 9rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 12px;
}
.hero-title-main em { font-style: italic; color: var(--ochre-light); font-weight: 400; }
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: rgba(232,219,198,0.85);
  font-weight: 400;
  max-width: 480px;
  line-height: 1.5;
}
.hero-aside {
  text-align: right;
  align-self: end;
  padding-bottom: 6px;
}
.hero-rating {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--bone);
  margin-bottom: 6px;
}
.hero-rating-stars { color: var(--ochre-light); letter-spacing: 3px; font-size: 0.95rem; }
.hero-rating-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(232,219,198,0.55);
  margin-top: 4px;
}
@media (max-width: 900px) {
  .hero-aside { text-align: left; }
}

.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%; transform: translateX(-50%);
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(232,219,198,0.5);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  animation: scrollPulse 2.5s ease-in-out infinite;
}
.hero-scroll-line { width: 1px; height: 36px; background: rgba(232,219,198,0.4); }
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
}

/* ============================================
   MANIFESTO — Grande citation d'ouverture
============================================ */
.section-manifesto {
  background: var(--paper);
  padding: 100px 0;
}
@media (max-width: 768px) { .section-manifesto { padding: 72px 0; } }
.manifesto-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .manifesto-grid { grid-template-columns: 1fr; gap: 48px; }
}
.manifesto-image-wrap { position: relative; }
.manifesto-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(26,19,11,0.15);
  display: block;
}
.manifesto-content { max-width: 540px; }
.manifesto-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.manifesto-quote em { color: var(--ochre); font-style: italic; }
.manifesto-divider {
  width: 40px; height: 1px;
  background: var(--ochre);
  margin: 36px 0;
}
.manifesto-source {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================
   3 PILIERS — Cartes arrondies (style V1 mais ton V3)
============================================ */
.section-pillars {
  background: var(--paper-soft);
  padding-bottom: 200px;
}
.pillars-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .pillars-list { grid-template-columns: 1fr; } }
.pillars-cta {
  text-align: center;
  margin-top: 52px;
}
.pillar-item {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(26,19,11,0.05);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s;
  position: relative;
  display: flex; flex-direction: column;
}
.pillar-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(26,19,11,0.10);
}
.pillar-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.pillar-body {
  padding: 40px 36px 44px;
  flex: 1;
}
.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ochre);
  margin-bottom: 28px;
  letter-spacing: 0.05em;
  display: block;
}
.pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
  color: var(--ink);
}
.pillar-text { font-size: 0.95rem; color: var(--muted); line-height: 1.85; }

/* ============================================
   SHOW PILLARS — Style éditorial typographique (page Spectacle)
============================================ */
.show-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (max-width: 900px) {
  .show-pillars-grid { grid-template-columns: 1fr; border-bottom: none; }
}
.show-pillar {
  padding: 64px 48px;
  border-right: 1px solid var(--border);
  text-align: center;
  background: transparent;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  cursor: default;
}
.show-pillar:last-child { border-right: none; }
.show-pillar:not(.show-pillar-featured):hover {
  background: var(--paper-soft);
  transform: translateY(-6px);
}
.show-pillar:not(.show-pillar-featured):hover .show-pillar-icon {
  background: var(--bone);
  transform: scale(1.08) rotate(-4deg);
}
.show-pillar-featured:hover { transform: scale(1.04); box-shadow: 0 40px 100px rgba(26,19,11,0.32); }
.show-pillar-featured:hover .show-pillar-icon { transform: scale(1.08) rotate(4deg); background: rgba(255,255,255,0.12); }
.show-pillar-icon { transition: all 0.4s cubic-bezier(0.4,0,0.2,1); }
@media (max-width: 900px) {
  .show-pillar { border-right: none; border-bottom: 1px solid var(--border); padding: 56px 32px; }
  .show-pillar:last-child { border-bottom: none; }
}
.show-pillar-featured {
  background: var(--ink);
  color: var(--bone);
  margin: -1px;
  border-radius: 24px;
  border: none;
  box-shadow: 0 30px 80px rgba(26,19,11,0.25);
  transform: scale(1.02);
  z-index: 2;
}
@media (max-width: 900px) {
  .show-pillar-featured { margin: 12px 0; transform: none; }
}
.show-pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ochre);
  margin-bottom: 24px;
  letter-spacing: 0.12em;
}
.show-pillar-featured .show-pillar-num { color: var(--ochre-light); }
.show-pillar-icon {
  font-size: 2.2rem;
  margin-bottom: 24px;
  width: 64px; height: 64px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--paper-soft);
}
.show-pillar-featured .show-pillar-icon { background: rgba(255,255,255,0.07); }
.show-pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 18px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.show-pillar-featured .show-pillar-title { color: var(--bone); }
.show-pillar-text {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
}
.show-pillar-featured .show-pillar-text { color: rgba(232,219,198,0.75); }
.show-pillar-detail {
  font-size: 0.85rem;
  color: var(--light);
  line-height: 1.7;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: left;
}
.show-pillar-featured .show-pillar-detail {
  color: rgba(232,219,198,0.6);
  border-top-color: rgba(232,219,198,0.12);
}
.show-pillar-detail strong { color: var(--ochre); font-weight: 600; }
.show-pillar-featured .show-pillar-detail strong { color: var(--ochre-light); }

/* ============================================
   STORY — Layout asymétrique
============================================ */
.section-story { background: var(--paper); padding: 180px 0; }
.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: center;
}
@media (max-width: 900px) { .story-grid { grid-template-columns: 1fr; gap: 56px; } }
.story-image-wrap { position: relative; }
.story-image {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  object-position: center;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(26,19,11,0.15);
}
.story-image-2 {
  position: absolute;
  width: 40%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 35%;
  bottom: -30px; right: 20px;
  border: 8px solid var(--paper);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(26,19,11,0.18);
}
@media (max-width: 900px) {
  .story-image-2 { display: none; }
}
.story-cta {
  margin-top: 28px;
}
.story-content { max-width: 500px; }
.story-content p { margin-bottom: 24px; color: var(--muted); font-size: 1rem; }
.story-content p em { color: var(--ink-2); font-style: italic; }
.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.story-stat { padding-right: 24px; border-right: 1px solid var(--border); }
.story-stat:last-child { border-right: none; padding-right: 0; padding-left: 24px; }
.story-stat:nth-child(2) { padding-left: 24px; }
.story-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--ochre);
  line-height: 1;
  letter-spacing: -0.02em;
}
.story-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--light);
  margin-top: 10px;
  line-height: 1.5;
}

/* ============================================
   SPECTACLE INTERMISSION — Section sombre cinématique
============================================ */
.section-cinema {
  position: relative;
  background: var(--espresso);
  color: var(--bone);
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.cinema-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.45) grayscale(20%);
  z-index: 0;
}
.cinema-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(rgba(15,11,6,0.6), rgba(15,11,6,0.85));
  z-index: 1;
}
.cinema-content {
  position: relative; z-index: 2;
  text-align: center;
  width: 100%;
  padding: 140px 0;
}
.cinema-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--bone);
  letter-spacing: -0.015em;
  max-width: 900px;
  margin: 0 auto;
}
.cinema-quote em { color: var(--ochre-light); font-style: italic; }

/* ============================================
   GALERIE — Grille élégante avec animations
============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 700px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(26,19,11,0.10);
  transition: all 0.6s cubic-bezier(0.4,0,0.2,1);
  cursor: zoom-in;
  filter: brightness(0.95) saturate(0.92);
  display: block;
}
.gallery-grid img:hover {
  transform: translateY(-10px) scale(1.025);
  box-shadow: 0 36px 80px rgba(26,19,11,0.25);
  filter: brightness(1.05) saturate(1.15);
}

/* ============================================
   REVIEWS — Pull quotes éditoriales
============================================ */
.section-reviews { background: var(--paper); padding: 200px 0; }
.reviews-header { text-align: center; margin-bottom: 100px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 800px) { .reviews-grid { grid-template-columns: 1fr; gap: 20px; } }
.review-item {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 44px 40px 32px;
  box-shadow: 0 4px 20px rgba(26,19,11,0.05);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s;
}
.review-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(26,19,11,0.10);
}
.review-item::before {
  content: '"';
  position: absolute;
  left: 28px; top: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  font-style: italic;
  color: var(--ochre);
  line-height: 1;
  opacity: 0.4;
}
.review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -0.005em;
  padding-top: 28px;
}
.review-attribution {
  display: flex; align-items: center; gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
  flex-wrap: wrap;
}
.review-stars { color: var(--ochre); font-size: 0.85rem; letter-spacing: 2px; }
.review-author {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.review-source {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--light);
  margin-left: auto;
}

/* Press feature - carte style avis */
.press-feature {
  position: relative;
  margin-top: 60px;
  background: #fff;
  padding: 56px 64px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
  box-shadow: 0 4px 20px rgba(26,19,11,0.05);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s;
}
.press-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(26,19,11,0.10);
}
.press-feature::before {
  content: '"';
  position: absolute;
  left: 56px; top: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-style: italic;
  color: var(--ochre);
  line-height: 1;
  opacity: 0.35;
  pointer-events: none;
}
@media (max-width: 800px) {
  .press-feature { grid-template-columns: 1fr; gap: 32px; padding: 48px 32px; text-align: center; border-radius: 20px; }
  .press-feature::before { left: 24px; }
}
.press-feature img { width: 200px; height: auto; border-radius: 10px; box-shadow: 0 6px 20px rgba(26,19,11,0.12); }
.press-feature-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 20px;
  padding-top: 24px;
}
.press-feature-source {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ochre);
}

/* ============================================
   MENU — Cartes 01/02/03 élégantes (page Repas)
============================================ */
.section-menu { background: var(--paper-soft); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .menu-grid { grid-template-columns: 1fr; gap: 22px; } }

.menu-card {
  background: #fff;
  border-radius: 22px;
  padding: 56px 44px 48px;
  box-shadow: 0 6px 24px rgba(26,19,11,0.06);
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.menu-card-img {
  display: block;
  width: 100%;
  max-width: 260px;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 14px;
  margin: auto auto 0;
  box-shadow: 0 8px 28px rgba(26,19,11,0.10);
}
.menu-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--ochre), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}
.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(26,19,11,0.16);
}
.menu-card:hover::before { opacity: 1; }

.menu-card-featured {
  background: var(--ink);
  color: var(--bone);
  box-shadow: 0 16px 50px rgba(26,19,11,0.25);
}
.menu-card-featured:hover { box-shadow: 0 40px 100px rgba(26,19,11,0.40); }

.menu-number {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 3.8rem;
  font-weight: 300;
  color: var(--ochre);
  opacity: 0.85;
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.menu-card-featured .menu-number { color: var(--ochre-light); opacity: 1; }

.menu-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.menu-card-featured h3 { color: var(--bone); }

.menu-divider {
  width: 40px; height: 1px;
  background: var(--ochre);
  margin: 14px 0 22px;
}
.menu-card-featured .menu-divider { background: var(--ochre-light); }

.menu-description {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
}
.menu-card-featured .menu-description { color: rgba(232,219,198,0.75); }

.menu-list { padding: 0; margin: 0; }
.menu-list li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  font-style: italic;
  color: var(--ink);
  padding: 11px 0;
  border-bottom: 1px solid var(--border-soft);
  display: flex; align-items: center; gap: 12px;
}
.menu-list li::before {
  content: '·';
  color: var(--ochre);
  font-size: 1.4rem;
  font-weight: 700;
  font-style: normal;
  flex-shrink: 0;
}
.menu-list li:last-child { border-bottom: none; }
.menu-card-featured .menu-list li { color: rgba(232,219,198,0.85); border-color: rgba(232,219,198,0.1); }
.menu-card-featured .menu-list li::before { color: var(--ochre-light); }

.menu-badge {
  display: inline-block;
  margin-top: 26px;
  padding: 8px 16px;
  background: var(--ochre);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 50px;
}

/* ============================================
   CUISINE — Engagements (image + features)
============================================ */
.section-cuisine { background: var(--paper); }
.cuisine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .cuisine-grid { grid-template-columns: 1fr; gap: 56px; } }
.cuisine-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(26,19,11,0.15);
}
.cuisine-features { display: flex; flex-direction: column; }
.cuisine-feature {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 26px 0;
  border-bottom: 1px solid var(--border-soft);
}
.cuisine-feature:last-child { border-bottom: none; padding-bottom: 0; }
.cuisine-feature-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--paper-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
  transition: all 0.3s;
}
.cuisine-feature:hover .cuisine-feature-icon { background: var(--ochre); transform: rotate(-6deg) scale(1.08); }
.cuisine-features strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.cuisine-features span { font-size: 0.92rem; color: var(--muted); line-height: 1.65; }

/* ============================================
   TIMELINE — Déroulé d'une soirée
============================================ */
.timeline { max-width: 740px; margin: 0 auto; }
.timeline-item {
  display: flex; gap: 36px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(232,219,198,0.08);
  align-items: flex-start;
  transition: padding 0.3s;
}
.timeline-item:hover { padding-left: 12px; }
.timeline-item:last-child { border-bottom: none; }
.timeline-time {
  flex-shrink: 0; width: 80px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 500;
  color: var(--ochre-light);
  text-align: right;
  font-style: italic;
}
.timeline-content h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem; font-weight: 600;
  color: var(--bone);
  margin-bottom: 6px;
}
.timeline-content p { font-size: 0.92rem; color: rgba(232,219,198,0.6); line-height: 1.7; }

/* ============================================
   CONTACT
============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 56px; } }
.contact-info-list { display: flex; flex-direction: column; }
.contact-info-item {
  display: flex; gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-soft);
  align-items: flex-start;
}
.contact-info-item:last-child { border-bottom: none; }
.contact-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--paper-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-info-item strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 6px;
}
.contact-info-item p { font-size: 1rem; color: var(--ink); line-height: 1.5; margin-bottom: 4px; }
.contact-info-item a { color: var(--ink); border-bottom: 1px solid transparent; transition: 0.2s; }
.contact-info-item a:hover { color: var(--ochre); border-bottom-color: var(--ochre); }

.contact-form {
  display: flex; flex-direction: column; gap: 18px;
  background: #fff;
  padding: 48px 44px;
  border-radius: 22px;
  box-shadow: 0 6px 24px rgba(26,19,11,0.06);
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: inherit; font-size: 0.95rem;
  color: var(--ink); background: var(--paper-soft);
  transition: border-color 0.3s, background 0.3s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--ochre);
  background: #fff;
}
.form-group textarea { height: 140px; resize: vertical; }

/* Case RGPD */
.form-group-rgpd { margin-top: 8px; }
.rgpd-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.rgpd-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--ochre);
  cursor: pointer;
}
.rgpd-label span {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}
.rgpd-label span a {
  color: var(--ochre);
  text-decoration: underline;
}

/* ============================================
   VALUES — Cards 4 colonnes
============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(26,19,11,0.05);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(26,19,11,0.12);
}
.value-icon {
  font-size: 1.7rem;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--paper-soft);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s;
}
.value-card:hover .value-icon { background: var(--ochre); transform: rotate(-6deg) scale(1.08); }
.value-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 500;
  color: var(--ink); margin-bottom: 10px;
}
.value-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* ============================================
   BAND — Musiciens (page À propos)
============================================ */
.band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .band-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .band-grid { grid-template-columns: 1fr; } }
.band-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(26,19,11,0.06);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.band-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(26,19,11,0.16);
}
.band-photo { aspect-ratio: 1; background-size: cover; background-position: center top; background-color: var(--paper-deep); }
.band-photo-1 { background-image: url('images/cabaret-patjaune-guitariste-concert-lumiere-scene.jpg'); }
.band-photo-2 { background-image: url('images/cabaret-patjaune-contrebassiste-portrait-scene.jpg'); }
.band-photo-3 { background-image: url('images/cabaret-patjaune-musicien-portrait-studio-chapeau.jpg'); }
.band-photo-4 { background-image: url('images/musicien4.jpg'); }
.band-photo-loic { background-image: url('images/cabaret-patjaune-guitariste-portrait-scene-sourire.jpg'); }
.band-photo-linda { background-image: url('images/cabaret-patjaune-chanteuse-linda-portrait-scene.jpg'); }
.band-photo-legros { background-image: url('images/cabaret-patjaune-percussionniste-scene-concert.jpg'); }
.band-card-body { padding: 28px 30px; }
.band-card-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 500; margin-bottom: 4px; color: var(--ink); }
.band-role {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 14px;
}
.band-card-body p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* ============================================
   CHRONO — Chronologie (page À propos)
============================================ */
.chrono { max-width: 760px; margin: 0 auto; }
.chrono-item {
  display: flex; gap: 40px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(232,219,198,0.08);
  align-items: flex-start;
  transition: padding 0.3s;
}
.chrono-item:hover { padding-left: 12px; }
.chrono-item:last-child { border-bottom: none; }
.chrono-year {
  flex-shrink: 0; width: 72px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 500;
  font-style: italic;
  color: var(--ochre-light);
  text-align: right;
}
.chrono-content h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem; font-weight: 600;
  color: var(--bone);
  margin-bottom: 6px;
}
.chrono-content p { font-size: 0.92rem; color: rgba(232,219,198,0.6); line-height: 1.7; }

/* ============================================
   BTN-FILL (boutons CTA)
============================================ */
.btn-fill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink);
  color: var(--bone);
  padding: 16px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}
.btn-fill:hover { background: var(--ochre); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(168,126,61,0.35); }
.btn-fill-ochre { background: var(--ochre); }
.btn-fill-ochre:hover { background: var(--ochre-deep); }
.btn-fill svg { transition: transform 0.3s; }
.btn-fill:hover svg { transform: translateX(4px); }

/* ============================================
   PARTNERS — Strip horizontale
============================================ */
/* ============================================
   FOOTER PARTNERS — Logos partenaires dans le footer
============================================ */
.footer-partners {
  border-top: 1px solid rgba(232,219,198,0.10);
  border-bottom: 1px solid rgba(232,219,198,0.10);
  padding: 32px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.footer-partners-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ochre);
  opacity: 0.6;
  white-space: nowrap;
}

.footer-partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

/* Alias pour compat */
.partner-ribbon-label { display: none; }
.partner-ribbon-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.partner-ribbon-sep {
  width: 1px;
  height: 40px;
  background: rgba(232,219,198,0.15);
  flex-shrink: 0;
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.4s;
}
.partner-item img {
  height: 72px;
  opacity: 0.85;
  filter: grayscale(0%);
  transition: opacity 0.4s, transform 0.4s;
  display: block;
}
.partner-item:hover { transform: scale(1.05); }
.partner-item:hover img { opacity: 1; }

/* TicketLeLa : fond clair derrière le logo pour garder le jaune intact */
.partner-item.ticketlela-dark {
  background: rgba(232,219,198,0.13);
  padding: 10px 20px;
  border-radius: 6px;
  transition: background 0.4s, transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.partner-item.ticketlela-dark img {
  height: 48px;
  filter: none;
  opacity: 1;
}
.partner-item.ticketlela-dark:hover {
  background: rgba(232,219,198,0.22);
}
.partner-item.ticketlela-dark:hover img {
  filter: none;
  opacity: 1;
}

@media (max-width: 900px) {
  .footer-partners { gap: 32px; padding: 40px 20px; }
  .footer-partners-label { display: none; }
  .footer-partners-logos { gap: 32px; }
  .partner-ribbon-sep { display: none; }
  .partner-item img { height: 72px; }
  .partner-item.ticketlela-dark img { height: 52px; }
}

/* ============================================
   ACTUALITÉS — Articles
============================================ */
.news-article {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.news-article:last-child { border-bottom: none; }

.news-article-image-wrap {
  position: sticky;
  top: 120px;
}
.news-article-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(26,19,11,0.15);
}

.news-article-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ochre);
  display: block;
  margin-bottom: 18px;
}
.news-article-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 24px;
  text-wrap: balance;
}
.news-article-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 20px;
}
.news-article-body {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 24px;
}

/* Boutons plateformes streaming */
.news-platforms {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.news-platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.news-platform-apple {
  background: var(--ink);
  color: var(--bone);
}
.news-platform-apple:hover {
  background: var(--ochre-deep);
  color: #fff;
}
.news-platform-deezer {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}
.news-platform-deezer:hover {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}

/* Dispo physique */
.news-article-dispo {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--paper-deep);
  padding: 20px 24px;
  border-left: 3px solid var(--ochre);
}
.news-dispo-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.news-article-dispo p {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}
.news-article-dispo strong { color: var(--ink); font-weight: 600; }

@media (max-width: 900px) {
  .news-article { grid-template-columns: 1fr; gap: 40px; }
  .news-article-image-wrap { position: static; }
  .news-article-image { max-width: 320px; margin: 0 auto; }
}

/* ============================================
   CTA FINAL — Box arrondie sombre sur fond paper
============================================ */
.section-cta-final {
  background: var(--paper);
  padding: 80px 0 160px;
}
.cta-final-box {
  background: var(--ink);
  color: var(--bone);
  padding: 120px 60px;
  border-radius: 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(26,19,11,0.20);
}
.cta-final-box::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(168,126,61,0.15) 0%, transparent 55%),
              radial-gradient(ellipse at 75% 100%, rgba(201,160,100,0.08) 0%, transparent 50%);
}
.cta-final-box > * { position: relative; z-index: 1; }
@media (max-width: 768px) {
  .cta-final-box { padding: 80px 32px; border-radius: 20px; }
}
.cta-final-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ochre-light);
  margin-bottom: 36px;
}
.cta-final-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--bone);
  margin-bottom: 24px;
}
.cta-final-title em { font-style: italic; color: var(--ochre-light); }
.cta-final-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(232,219,198,0.6);
  margin-bottom: 56px;
  letter-spacing: 0.01em;
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--espresso);
  color: rgba(232,219,198,0.55);
  padding: 100px 0 0;
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 60px; padding-bottom: 80px; }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 600px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; color: var(--bone); margin-bottom: 22px; display: block; }
.footer-brand em { font-style: italic; color: var(--ochre-light); }
.footer-tagline { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.05rem; color: rgba(232,219,198,0.7); margin-bottom: 28px; line-height: 1.5; max-width: 320px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(232,219,198,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(232,219,198,0.55);
  transition: 0.3s;
}
.footer-social a:hover { border-color: var(--ochre-light); color: var(--ochre-light); }
.footer-col-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232,219,198,0.35);
  margin-bottom: 26px;
}
.footer-col a {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: rgba(232,219,198,0.6);
  margin-bottom: 12px;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--ochre-light); }
.footer-col p { font-size: 0.88rem; color: rgba(232,219,198,0.6); line-height: 1.7; margin-bottom: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(232,219,198,0.08);
  padding: 32px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: rgba(232,219,198,0.6);
}
.footer-bottom p em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(232,219,198,0.9);
  letter-spacing: 0.03em;
}

/* ============================================
   HERO PAGE (intérieures)
============================================ */
.hero-page { min-height: 70vh; }
.hero-page .hero-title-main { font-size: clamp(3rem, 7vw, 5.5rem); }

/* ============================================
   PAGES INTÉRIEURES — Structure générique
============================================ */
.section-light { background: var(--paper); }
.section-soft { background: var(--paper-soft); }
.section-dark { background: var(--ink); color: var(--bone); }
.section-dark .section-title { color: var(--bone); }
.section-dark p { color: rgba(232,219,198,0.65); }

.section-header { text-align: center; margin-bottom: 100px; max-width: 720px; margin-left: auto; margin-right: auto; }

/* Contenu structuré pour about/timeline */
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
}
@media (max-width: 900px) { .editorial-grid { grid-template-columns: 1fr; gap: 56px; } }

/* === COOKIE BANNER === */
#cookie-banner {
  position: fixed; bottom: 24px; left: 24px; right: 24px;
  max-width: 700px; margin: 0 auto;
  background: var(--ink);
  color: rgba(232,219,198,0.85);
  padding: 22px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  z-index: 999;
  font-size: 0.84rem;
}
#cookie-banner.hidden { display: none; }
#cookie-banner a { color: var(--ochre-light); text-decoration: underline; font-weight: 600; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-actions button {
  padding: 10px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(232,219,198,0.3);
  color: var(--bone);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}
.cookie-actions button:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.cookie-actions button.primary { background: var(--ochre); border-color: var(--ochre); color: var(--ink); }

/* ============================================
   PAGES LÉGALES — Design éditorial
============================================ */
.legal-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 0 60px;
}
.legal-intro {
  margin-bottom: 64px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--bone);
}
.legal-intro p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--ink);
  opacity: 0.75;
  line-height: 1.8;
}
.legal-section {
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(168,126,61,0.15);
}
.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.legal-section-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 24px;
}
.legal-section-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--ochre);
  letter-spacing: 0.1em;
  flex-shrink: 0;
}
.legal-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
  margin: 0;
}
.legal-section p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(26,19,11,0.72);
  line-height: 1.85;
  margin-bottom: 14px;
}
.legal-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
}
.legal-section ul li {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(26,19,11,0.72);
  line-height: 1.8;
  padding: 6px 0 6px 20px;
  position: relative;
  border-bottom: 1px solid rgba(168,126,61,0.1);
}
.legal-section ul li:last-child { border-bottom: none; }
.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 1px;
  background: var(--ochre);
}
.legal-section a {
  color: var(--ochre);
  text-decoration: none;
  border-bottom: 1px solid rgba(168,126,61,0.4);
  transition: border-color 0.2s;
}
.legal-section a:hover { border-color: var(--ochre); }
.legal-update {
  margin-top: 48px;
  padding: 20px 28px;
  background: rgba(168,126,61,0.06);
  border-left: 2px solid var(--ochre);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--ochre);
  letter-spacing: 0.05em;
}

/* === TABLEAU COOKIES — Style éditorial === */
.cookie-category {
  background: var(--paper);
  border: 1px solid rgba(168,126,61,0.2);
  border-radius: 2px;
  margin-bottom: 24px;
  overflow: hidden;
}
.cookie-category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background: rgba(168,126,61,0.06);
  border-bottom: 1px solid rgba(168,126,61,0.15);
}
.cookie-category-badge {
  font-size: 1.1rem;
  flex-shrink: 0;
}
.cookie-category-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
}
.cookie-category-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: rgba(26,19,11,0.6);
  margin: 0;
  padding: 14px 28px;
  border-bottom: 1px solid rgba(168,126,61,0.1);
}
.cookie-table-inner {
  width: 100%;
  border-collapse: collapse;
}
.cookie-table-inner thead th {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ochre);
  padding: 14px 28px;
  text-align: left;
  border-bottom: 1px solid rgba(168,126,61,0.15);
  background: rgba(168,126,61,0.03);
}
.cookie-table-inner tbody td {
  font-family: 'Inter', sans-serif;
  font-size: 0.86rem;
  color: rgba(26,19,11,0.75);
  padding: 14px 28px;
  border-bottom: 1px solid rgba(168,126,61,0.08);
  vertical-align: top;
  line-height: 1.6;
}
.cookie-table-inner tbody tr:last-child td { border-bottom: none; }
.cookie-table-inner tbody tr:hover td { background: rgba(168,126,61,0.03); }
.cookie-table-inner code {
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  background: rgba(168,126,61,0.1);
  color: var(--ink);
  padding: 2px 7px;
  border-radius: 2px;
}
.cookie-duration {
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.cookie-consent-required {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-left: auto;
  flex-shrink: 0;
}
.cookie-consent-required.auto { background: rgba(26,19,11,0.08); color: rgba(26,19,11,0.55); }
.cookie-consent-required.opt-in { background: rgba(168,126,61,0.15); color: var(--ochre); }

/* Bouton reset cookies */
.btn-reset-cookies {
  display: inline-block;
  margin-top: 8px;
  padding: 13px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--bone);
  border: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.btn-reset-cookies:hover { background: var(--ochre); color: var(--ink); }

/* Liens navigateur */
.browser-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 16px 0;
}
.browser-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border: 1px solid rgba(168,126,61,0.2);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--ink) !important;
  border-bottom: 1px solid rgba(168,126,61,0.2) !important;
  transition: border-color 0.2s, background 0.2s;
}
.browser-list a:hover { background: rgba(168,126,61,0.06); border-color: var(--ochre) !important; }
.browser-list a::before {
  content: '→';
  color: var(--ochre);
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .legal-wrap { padding: 48px 0 40px; }
  .legal-section h2 { font-size: 1.3rem; }
  .browser-list { grid-template-columns: 1fr; }
  .cookie-category-header { padding: 16px 20px; }
  .cookie-category-desc { padding: 12px 20px; }
  .cookie-table-inner thead th,
  .cookie-table-inner tbody td { padding: 12px 20px; }
}
.cookie-actions button.primary:hover { background: var(--ochre-light); border-color: var(--ochre-light); }

/* ===== NAV DROPDOWN ===== */
.nav-dropdown { position: relative; display: inline-block; }
.nav-link-parent { display: inline-flex; align-items: center; gap: 4px; cursor: pointer; }
.nav-link-parent svg { transition: transform 0.2s ease; }
.nav-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(20, 16, 12, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  padding: 8px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 100;
}
.nav-submenu a {
  display: block;
  padding: 10px 22px;
  color: #f5efe6;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.nav-submenu a:hover,
.nav-submenu a.active {
  background: rgba(196,156,90,0.18);
  color: var(--ochre, #c49c5a);
}
/* Quand le header est en mode scrolled (clair), submenu reste sombre — mais alternative claire possible */
.header.scrolled .nav-submenu {
  background: rgba(255,255,255,0.98);
  border-color: rgba(0,0,0,0.06);
  box-shadow: 0 20px 50px rgba(26,19,11,0.18);
}
.header.scrolled .nav-submenu a { color: var(--text, #1a130b); }
.header.scrolled .nav-submenu a:hover,
.header.scrolled .nav-submenu a.active {
  background: rgba(196,156,90,0.10);
  color: var(--ochre, #c49c5a);
}
.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown:hover .nav-link-parent svg { transform: rotate(180deg); }

/* Mobile : accordéon (aligné sur le breakpoint du menu hamburger = 1000px) */
@media (max-width: 1000px) {
  .nav-dropdown { display: block; width: 100%; }
  .nav-submenu {
    position: static;
    transform: none;
    box-shadow: none;
    background: rgba(0,0,0,0.04);
    border-radius: 8px;
    margin-top: 8px;
    padding: 8px 0;
    opacity: 1;
    visibility: visible;
    display: none;
    min-width: 0;
  }
  .nav-dropdown.open .nav-submenu { display: block; }
  .nav-dropdown.open .nav-link-parent svg { transform: rotate(180deg); }
  .nav-submenu a { padding: 10px 32px; }
  /* Neutralise le positionnement desktop déclenché par le :hover tactile */
  .nav-dropdown:hover .nav-submenu,
  .nav-dropdown:focus-within .nav-submenu {
    position: static;
    transform: none;
  }
  /* Lisibilité sur fond clair : textes sombres dans le menu mobile */
  .nav-submenu a { color: var(--ink); }
  .nav-link:hover, .nav-link:focus, .nav-link.active,
  .nav-link-parent:hover, .nav-link-parent:focus { color: var(--ink); }
  .nav-submenu a:hover, .nav-submenu a.active { color: var(--ochre); }
}

/* ===== LOGO IMAGE (adaptatif clair/sombre) ===== */
.logo-img { height: 56px; width: auto; display: block; transition: height 0.4s ease; }
.logo-dark { display: none; }                         /* version foncée jamais utilisée : on garde le logo doré partout */
.header.scrolled .logo-light { display: block; }      /* header clair : le logo reste doré */
.header.scrolled .logo-dark { display: none; }        /* la version foncée n'est jamais affichée */
/* Sur le header clair (beige), le doré manque de contraste → ombre portée + léger renforcement pour le détacher, sans changer sa couleur */
.header.scrolled .logo-light {
  filter: drop-shadow(0 1px 2px rgba(40, 26, 8, 0.45)) saturate(1.12) brightness(0.96);
}
.header.scrolled .logo-img { height: 48px; }
.footer-logo-img { height: 60px; width: auto; display: block; margin-bottom: 20px; }
@media (max-width: 768px) { .logo-img { height: 46px; } .footer-logo-img { height: 52px; } }

/* ===== ACTUALITÉS — Liste des dates de concert ===== */
.news-dates { list-style: none; padding: 0; margin: 18px 0 0; }
.news-dates li {
  display: flex; flex-direction: column; gap: 2px;
  padding: 14px 0; border-bottom: 1px solid rgba(196,156,90,0.20);
}
.news-dates li:last-child { border-bottom: none; }
.news-date-day {
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  color: var(--ochre); font-size: 1.15rem; letter-spacing: 0.5px;
}
.news-date-place { color: var(--muted); font-size: 0.95rem; }

/* ===== ACCUEIL — Bandeau Événement à venir ===== */
.section-event { padding: 70px 0; background: linear-gradient(135deg, #2a1f14 0%, #1a130b 100%); }
.event-card { max-width: 760px; margin: 0 auto; text-align: center; padding: 0 24px; }
.event-eyebrow { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--ochre-light); letter-spacing: 2px; font-size: 1.35rem; display: block; margin-bottom: 16px; }
.event-title { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 400; color: var(--bone); margin: 0 0 10px; text-wrap: balance; }
.nowrap { white-space: nowrap; }
.event-title strong { color: var(--ochre-light); font-weight: 600; }
.event-sub { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--light); font-size: 1.2rem; margin: 0 0 28px; }
.event-dates { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-bottom: 30px; }
.event-date { display: flex; flex-direction: column; color: var(--bone); }
.event-date strong { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--ochre-light); }
.event-date em { font-style: normal; color: var(--light); font-size: 0.9rem; letter-spacing: 1px; }
.btn-outline-dark { border-color: var(--ochre-light); color: var(--ochre-light); }
.btn-outline-dark:hover { background: var(--ochre-light); color: var(--ink); }
@media (max-width: 600px) { .event-title { font-size: 1.9rem; } .event-dates { gap: 24px; } }

/* Vignette photo + lieu dans le bandeau événement */
.event-vignette {
  width: 210px; height: 250px; border-radius: 14px; object-fit: cover;
  object-position: center 18%; border: 2px solid var(--ochre-light);
  box-shadow: 0 18px 45px rgba(0,0,0,0.40); margin: 0 auto 28px; display: block;
}
.event-venue {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  color: var(--ochre-light); font-size: 1.15rem; margin: -10px 0 28px;
}

.event-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.event-resa { margin-top: 18px; }
.event-resa a {
  color: var(--ochre-light); font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.15rem; text-decoration: none;
  border-bottom: 1px solid rgba(212,160,23,0.5); padding-bottom: 2px; transition: color .2s, border-color .2s;
}
.event-resa a:hover { color: #fff; border-color: #fff; }

/* Bandeau événement — disposition horizontale (photo + texte) */
.event-card-row {
  display: flex; align-items: center; gap: 48px;
  max-width: 900px; text-align: left;
}
.event-card-row .event-vignette { margin: 0; flex-shrink: 0; }
.event-card-row .event-body { flex: 1; }
.event-card-row .event-dates { justify-content: flex-start; }
.event-card-row .event-actions { justify-content: flex-start; }
.event-card-row .event-venue { margin: -6px 0 24px; }
@media (max-width: 720px) {
  .event-card-row { flex-direction: column; text-align: center; gap: 28px; }
  .event-card-row .event-dates,
  .event-card-row .event-actions { justify-content: center; }
}

/* ===== Icône Contact (enveloppe) dans le menu ===== */
.nav-icon-link { display: inline-flex; align-items: center; padding: 6px; }
.nav-icon-link svg { display: block; transition: transform 0.2s ease, color 0.2s ease; }
.nav-icon-link:hover svg { transform: translateY(-1px); }
/* tooltip "Contact" au survol */
.nav-icon-link { position: relative; }
.nav-icon-link::after {
  content: "Contact";
  position: absolute; top: 130%; left: 50%; transform: translateX(-50%) translateY(4px);
  background: rgba(20,16,12,0.95); color: #f5efe6; font-size: 0.72rem; letter-spacing: 0.5px;
  padding: 4px 10px; border-radius: 6px; white-space: nowrap;
  opacity: 0; visibility: hidden; transition: opacity 0.2s ease, transform 0.2s ease; pointer-events: none;
}
.nav-icon-link:hover::after { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
@media (max-width: 900px) { .nav-icon-link::after { display: none; } }

/* ===== Dossier de presse — aperçu mobile (l'iframe PDF marche mal sur mobile) ===== */
.pdf-preview-mobile { display: none; }
.pdf-preview-mobile img {
  width: 100%; max-width: 420px; height: auto; display: block; margin: 30px auto 14px;
  border-radius: 12px; box-shadow: 0 18px 45px rgba(26,19,11,0.20); border: 1px solid rgba(196,156,90,0.25);
}
.pdf-preview-hint {
  display: block; text-align: center; color: var(--ochre);
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.05rem;
}
@media (max-width: 768px) {
  .pdf-viewer-wrap { display: none; }       /* on cache l'iframe sur mobile */
  .pdf-preview-mobile { display: block; }   /* et on montre l'aperçu cliquable */
}
/* Appareils tactiles (iPad, tablettes, mobiles) : iOS ne fait pas défiler les PDF intégrés
   → on remplace l'iframe par l'aperçu image cliquable (ouvre le PDF en plein écran). */
@media (hover: none) and (pointer: coarse) {
  .pdf-viewer-wrap { display: none; }
  .pdf-preview-mobile { display: block; }
}

/* ===== Menu : resserrement aux largeurs intermédiaires (évite les retours à la ligne) ===== */
@media (max-width: 1300px) and (min-width: 1001px) {
  .nav { gap: 22px; }
  .nav-link { letter-spacing: 0.10em; font-size: 0.68rem; }
}
@media (max-width: 1120px) and (min-width: 1001px) {
  .nav { gap: 16px; }
  .nav-link { letter-spacing: 0.06em; }
}
