html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

section[id] {
  scroll-margin-top: 84px;
}

body {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #2c2c2c;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

.site-shell {
  max-width: 1320px;
  margin: 0 auto;
  background-color: #ffffff;
  min-height: 100vh;
}
.site-shell--page {
  display: flex;
  flex-direction: column;
}
.site-shell--page .search-results-section,
.site-shell--page .contact-section,
.site-shell--page .presentation-section,
.site-shell--page .index-personnalites-section,
.site-shell--page .detail-section,
.site-shell--page .archives-photo-section,
.site-shell--page .video-section {
  flex: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  color: #1a1a1a;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

::selection {
  background: #1a1a1a;
  color: #ffffff;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid #1a1a1a;
  outline-offset: 3px;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.gutter-aligned {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
@media (max-width: 576px) {
  .gutter-aligned {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.eyebrow-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
.site-header-sticky {
  z-index: 1030;
  background-color: #ffffff;
}

.site-navbar {
  height: 84px;
  background-color: #ffffff;
  border-bottom: 1px solid transparent;
  transition: height 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  z-index: 1030;
}
.site-navbar.is-scrolled {
  height: 60px;
  border-bottom-color: #e2e2e0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}
.site-navbar.is-scrolled .navbar-brand {
  font-size: 0.85rem;
}
@media (max-width: 991px) {
  .site-navbar .navbar-collapse {
    background-color: #ffffff;
    margin: 0 -1rem;
    padding: 0 1rem 1.25rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  }
}
.site-navbar .navbar-brand {
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin: 0;
  transition: font-size 0.35s ease, opacity 0.2s ease;
}
.site-navbar .navbar-brand:hover {
  opacity: 0.7;
}
.site-navbar .nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1a1a;
  padding: 0.5rem 1rem !important;
  position: relative;
}
.site-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.15rem;
  height: 1px;
  background-color: #1a1a1a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.site-navbar .nav-link:hover::after, .site-navbar .nav-link.active::after {
  transform: scaleX(1);
}
.site-navbar .dropdown-menu {
  border: 1px solid #e2e2e0;
  border-radius: 0;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
  padding: 0.5rem 0;
  min-width: 220px;
  animation: dropdownFadeIn 0.2s ease;
}
.site-navbar .dropdown-item {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1a1a;
  padding: 0.6rem 1.25rem;
  transition: all 0.3s ease;
}
.site-navbar .dropdown-item:hover, .site-navbar .dropdown-item:focus {
  background-color: #f7f7f5;
  color: #1a1a1a;
}
.site-navbar .dropdown-toggle.nav-link::before {
  content: none;
}
.site-navbar .dropdown-toggle.nav-link::after {
  position: static;
  display: inline-block;
  content: "";
  height: auto;
  background: none;
  transform: none;
  transform-origin: 50% 50%;
  border-width: 0.3em;
  vertical-align: 0.18em;
  opacity: 0.5;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.site-navbar .dropdown-toggle.nav-link[aria-expanded=true]::after {
  transform: rotate(180deg);
  opacity: 1;
}
.site-navbar .navbar-search-btn {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  border-radius: 50%;
  color: #1a1a1a;
  transition: all 0.3s ease;
}
.site-navbar .navbar-search-btn:hover {
  background-color: #ededeb;
}
.site-navbar .navbar-search-btn svg {
  width: 18px;
  height: 18px;
}
.site-navbar .navbar-toggler {
  border: none;
  padding: 0.25rem;
}
.site-navbar .navbar-toggler:focus {
  box-shadow: none;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.search-collapse-wrapper {
  border-bottom: 1px solid #e2e2e0;
  background-color: #f7f7f5;
}
.search-collapse-wrapper .search-inner {
  padding: 1.25rem 1.5rem;
}
.search-collapse-wrapper .search-form {
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
}
.search-collapse-wrapper input[type=search] {
  flex: 1 1 auto;
  border: none;
  border-bottom: 1px solid #d8d8d6;
  background: transparent;
  font-size: 1rem;
  width: 100%;
  padding: 0.5rem 0.1rem;
  transition: all 0.3s ease;
}
.search-collapse-wrapper input[type=search]::placeholder {
  color: #6b6b6b;
}
.search-collapse-wrapper input[type=search]:focus {
  outline: none;
  box-shadow: none;
  border-bottom-color: #1a1a1a;
}
.search-collapse-wrapper .search-submit-btn {
  flex: 0 0 auto;
  border: none;
  background-color: #1a1a1a;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 1.5rem;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.search-collapse-wrapper .search-submit-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.search-collapse-wrapper .search-submit-btn:hover {
  background-color: #111111;
}
@media (max-width: 576px) {
  .search-collapse-wrapper .search-submit-btn span {
    display: none;
  }
  .search-collapse-wrapper .search-submit-btn {
    padding: 0 0.9rem;
  }
}

.hero-section {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 320px;
  max-height: 720px;
  overflow: hidden;
  background-color: #1c1c1c;
}
@media (min-width: 768px) {
  .hero-section {
    height: 78vh;
  }
}
.hero-section .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.06);
  opacity: 0;
  animation: heroReveal 1.6s cubic-bezier(0.16, 0.8, 0.24, 1) forwards;
}

@keyframes heroReveal {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1.02);
  }
}
.black-feature-section {
  background-color: #0a0a0a;
  color: #ffffff;
}

.quote-block {
  padding: 6rem 0 6.5rem;
}
@media (max-width: 768px) {
  .quote-block {
    padding: 4rem 0 4.5rem;
  }
}
.quote-block .quote-mark {
  display: none;
}
.quote-block blockquote {
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -0.01em;
  margin: 0 0 2rem;
  max-width: 760px;
}
@media (min-width: 992px) {
  .quote-block blockquote {
    font-size: 2.35rem;
  }
}
.js-ready .quote-block blockquote {
  opacity: 0;
  transform: translateY(18px);
}
.js-ready .quote-block blockquote.is-visible {
  animation: fadeUp 0.8s ease forwards;
}
.quote-block .quote-attribution {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
  max-width: 420px;
  padding-left: 3rem;
}
@media (max-width: 576px) {
  .quote-block .quote-attribution {
    padding-left: 1rem;
  }
}
.js-ready .quote-block .quote-attribution {
  opacity: 0;
  transform: translateY(14px);
}
.js-ready .quote-block .quote-attribution.is-visible {
  animation: fadeUp 0.8s ease 0.15s forwards;
}
.quote-block .quote-attribution strong {
  color: #ffffff;
  font-weight: 500;
  display: block;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.about-section {
  background-color: #f7f7f5;
  padding: 3rem 0;
}
@media (min-width: 992px) {
  .about-section {
    padding: 5.5rem 0;
  }
}

.about-portrait {
  position: relative;
  overflow: hidden;
}
.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.about-portrait:hover img {
  transform: scale(1.04);
}

.about-content h2 {
  font-size: 1.7rem;
  font-weight: 700;
}
.about-content .about-years {
  color: #6b6b6b;
  font-size: 1rem;
  margin-bottom: 1.4rem;
  display: block;
}
.about-content p {
  line-height: 1.7;
  margin-bottom: 1.1rem;
  color: #2c2c2c;
}
.about-content .about-more-link {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 2px;
  display: inline-block;
  margin-top: 0.5rem;
}
.about-content .about-more-link:hover {
  color: #6b6b6b;
  border-color: #6b6b6b;
}

.archives-section {
  padding: 3rem 0;
}
@media (min-width: 992px) {
  .archives-section {
    padding: 5.5rem 0;
  }
}
.archives-section--video {
  background-color: #ededeb;
}
.archives-section .section-title {
  margin-bottom: 2.4rem;
}

.search-results-section {
  padding: 3rem 0 5rem;
}
@media (min-width: 992px) {
  .search-results-section {
    padding: 5.5rem 0 7rem;
  }
}
.search-results-section .search-results-eyebrow {
  color: #6b6b6b;
  margin-bottom: 0.75rem;
}
.search-results-section .search-results-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 2rem;
  word-break: break-word;
}
.search-results-section .search-results-empty {
  max-width: 560px;
}
.search-results-section .search-results-empty p {
  line-height: 1.7;
  color: #2c2c2c;
  margin-bottom: 1rem;
}
.search-results-section .search-results-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.archive-carousel {
  position: relative;
  padding-left: 3rem;
  padding-right: 3rem;
}
@media (max-width: 576px) {
  .archive-carousel {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
.archive-carousel .archive-track {
  display: flex;
  gap: 1.75rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.archive-carousel .archive-track::-webkit-scrollbar {
  display: none;
}
.archive-carousel .archive-item {
  flex: 0 0 calc(33.333% - 1.166rem);
  min-width: 260px;
  scroll-snap-align: start;
}
@media (max-width: 768px) {
  .archive-carousel .archive-item {
    flex: 0 0 calc(85% - 1.75rem);
  }
}
.archive-carousel .archive-thumb {
  position: relative;
  overflow: hidden;
  background-color: #1c1c1c;
  aspect-ratio: 1/1;
}
.archive-carousel .archive-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.archive-carousel .archive-thumb .archive-credit {
  position: absolute;
  left: 0.75rem;
  bottom: 0.65rem;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.04em;
}
.archive-carousel .archive-thumb .archive-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}
.archive-carousel .archive-thumb .archive-play-icon svg {
  width: 20px;
  height: 20px;
  color: #0a0a0a;
  margin-left: 2px;
}
.archive-carousel .archive-item:hover .archive-thumb img {
  transform: scale(1.06);
}
.archive-carousel .archive-item:hover .archive-play-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.archive-carousel .archive-caption {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 1rem;
  color: #1a1a1a;
}
.archive-carousel .archive-nav-btn {
  position: absolute;
  top: calc(50% - 1.5rem);
  width: 2rem;
  height: 2rem;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: opacity 0.2s ease;
  padding: 0;
}
.archive-carousel .archive-nav-btn svg {
  width: 22px;
  height: 22px;
  color: #1a1a1a;
  transition: transform 0.2s ease;
}
.archive-carousel .archive-nav-btn:hover svg {
  transform: scale(1.2);
}
.archive-carousel .archive-nav-btn.archive-nav-prev {
  left: 0;
}
.archive-carousel .archive-nav-btn.archive-nav-next {
  right: 0;
}
.archive-carousel .archive-nav-btn:disabled, .archive-carousel .archive-nav-btn.is-disabled {
  opacity: 0.2;
  cursor: default;
}
.archive-carousel .archive-nav-btn:disabled:hover svg, .archive-carousel .archive-nav-btn.is-disabled:hover svg {
  transform: none;
}

.contact-section {
  padding: 3rem 0 5rem;
}
@media (min-width: 992px) {
  .contact-section {
    padding: 5.5rem 0 7rem;
  }
}

.contact-header {
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .contact-header {
    margin-bottom: 4.5rem;
  }
}

.contact-eyebrow {
  color: #6b6b6b;
  margin-bottom: 0.75rem;
}

.contact-title {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.55rem;
}
@media (min-width: 992px) {
  .contact-title {
    font-size: 3rem;
  }
}

.contact-subtitle {
  font-size: 1rem;
  color: #6b6b6b;
  font-style: italic;
}

.contact-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}
@media (min-width: 992px) {
  .contact-body {
    grid-template-columns: 3fr 2fr;
    gap: 5rem;
    align-items: start;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-info-block {
  border-top: 1px solid #e2e2e0;
  padding: 1.4rem 0 1.8rem;
}

.contact-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b6b6b;
  margin-bottom: 0.6rem;
}

.contact-value {
  font-size: 1.15rem;
  font-weight: 500;
  color: #1a1a1a;
  transition: all 0.3s ease;
}
.contact-value:hover {
  color: #6b6b6b;
}

.contact-rights p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: #6b6b6b;
  max-width: 400px;
}

.contact-image-wrapper {
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}
@media (min-width: 992px) {
  .contact-image-wrapper {
    padding-top: 0;
  }
}

.contact-figure {
  display: inline-block;
  position: relative;
  background-color: #f5f2ea;
  padding: 0.9rem 0.9rem 2.8rem;
  max-width: 300px;
  width: 100%;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.06),
    4px 8px 22px rgba(0, 0, 0, 0.14),
    10px 18px 46px rgba(0, 0, 0, 0.07);
  transform: rotate(2deg);
  transform-origin: 50% 100%;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
              box-shadow 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media (min-width: 768px) {
  .contact-figure {
    max-width: 340px;
  }
}
.contact-figure:hover {
  transform: rotate(0deg);
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.08),
    6px 12px 30px rgba(0, 0, 0, 0.16);
}
.contact-figure img {
  display: block;
  width: 100%;
  filter: sepia(0.2) contrast(1.06) brightness(0.97) saturate(0.85);
}

/* ==========================================================================
   INDEX DES PERSONNALITÉS
   ========================================================================== */
.index-personnalites-section {
  padding-bottom: 6rem;
}

.index-header {
  padding: 3rem 0 2.5rem;
}
@media (min-width: 992px) {
  .index-header {
    padding: 5.5rem 0 3.5rem;
  }
}

.index-eyebrow {
  color: #6b6b6b;
  margin-bottom: 0.75rem;
}

.index-title {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .index-title {
    font-size: 3rem;
  }
}

.index-intro {
  font-size: 1rem;
  color: #6b6b6b;
  max-width: 580px;
  line-height: 1.65;
  margin: 0;
}

.alpha-nav-bar {
  position: sticky;
  top: 83px;
  z-index: 100;
  background-color: #ffffff;
  border-top: 1px solid #e2e2e0;
  border-bottom: 1px solid #e2e2e0;
}

.alpha-nav-inner {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  padding: 0.5rem 0;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.alpha-nav-inner::-webkit-scrollbar {
  display: none;
}

.alpha-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 0.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #1a1a1a;
  border-radius: 2px;
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.alpha-nav-link:hover {
  background-color: #f7f7f5;
  color: #1a1a1a;
}
.alpha-nav-link.is-empty {
  color: #d8d8d6;
  cursor: default;
  pointer-events: none;
}

.alpha-index {
  padding-top: 3rem;
}

.alpha-letter-group {
  padding-top: 3.5rem;
  padding-bottom: 0.5rem;
  border-top: 1px solid #e2e2e0;
  scroll-margin-top: 150px;
}
.alpha-letter-group:first-child {
  border-top: none;
  padding-top: 2.5rem;
}
@media (min-width: 992px) {
  .alpha-letter-group {
    padding-top: 4rem;
  }
}

.alpha-letter-heading {
  font-size: 3rem;
  font-weight: 900;
  color: #1a1a1a;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 1.75rem;
}
@media (min-width: 992px) {
  .alpha-letter-heading {
    font-size: 4rem;
    margin-bottom: 2rem;
  }
}

.alpha-name-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0;
}

.alpha-name-item {
  border-top: 1px solid #e2e2e0;
  padding: 0.6rem 0;
}
.alpha-name-item a {
  display: block;
  font-size: 0.9rem;
  color: #2c2c2c;
  line-height: 1.45;
  padding-left: 0;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.alpha-name-item a:hover {
  color: #1a1a1a;
  padding-left: 5px;
}

.alpha-name-country {
  font-size: 0.75rem;
  color: #6b6b6b;
  font-weight: 400;
  margin-left: 0.2em;
}

/* ==========================================================================
   PRÉSENTATION
   ========================================================================== */
.presentation-section {
  padding: 3rem 0 5rem;
}
@media (min-width: 992px) {
  .presentation-section {
    padding: 5.5rem 0 7rem;
  }
}

.presentation-header {
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .presentation-header {
    margin-bottom: 4.5rem;
  }
}

.presentation-eyebrow {
  color: #6b6b6b;
  margin-bottom: 0.75rem;
}

.presentation-title {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.55rem;
}
@media (min-width: 992px) {
  .presentation-title {
    font-size: 3rem;
  }
}

.presentation-subtitle {
  font-size: 1rem;
  color: #6b6b6b;
  font-style: italic;
}

.presentation-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
}
@media (min-width: 992px) {
  .presentation-hero {
    grid-template-columns: 2fr 3fr;
    gap: 5rem;
  }
}

.presentation-portrait {
  display: flex;
  justify-content: center;
}
@media (min-width: 992px) {
  .presentation-portrait {
    justify-content: flex-start;
  }
}

.presentation-bio p {
  line-height: 1.78;
  margin-bottom: 1.25rem;
  color: #2c2c2c;
}
.presentation-bio p:last-of-type {
  margin-bottom: 0;
}
.presentation-bio .bio-source {
  font-size: 0.85rem;
  color: #6b6b6b;
  font-style: italic;
  margin-top: 1.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid #e2e2e0;
}

.presentation-content {
  background-color: #f7f7f5;
  padding: 3rem 0;
}
@media (min-width: 992px) {
  .presentation-content {
    padding: 5.5rem 0;
  }
}

.presentation-content-inner {
  max-width: 760px;
}

.pres-section {
  border-top: 1px solid #e2e2e0;
  padding: 2.5rem 0;
}
.pres-section:last-child {
  border-bottom: 1px solid #e2e2e0;
}
@media (min-width: 992px) {
  .pres-section {
    padding: 3rem 0;
  }
}
.pres-section p {
  line-height: 1.78;
  margin-bottom: 1rem;
  color: #2c2c2c;
}
.pres-section p:last-child {
  margin-bottom: 0;
}

.pres-section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b6b6b;
  margin-bottom: 1.2rem;
  display: block;
}

.pres-timeline {
  display: flex;
  flex-direction: column;
  margin-top: 0.25rem;
}

.pres-timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.5rem;
  padding: 0.9rem 0;
  border-top: 1px solid #e2e2e0;
}
@media (max-width: 576px) {
  .pres-timeline-item {
    grid-template-columns: 72px 1fr;
    gap: 1rem;
  }
}

.pres-timeline-year {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #6b6b6b;
  padding-top: 2px;
  white-space: nowrap;
}

.pres-timeline-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #2c2c2c;
}

.pres-resources {
  display: flex;
  flex-direction: column;
  margin-top: 0.25rem;
}

.pres-resource {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid #e2e2e0;
  padding: 1.4rem 0;
}
.pres-resource:last-child {
  border-bottom: 1px solid #e2e2e0;
}
@media (max-width: 576px) {
  .pres-resource {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
  }
}

.pres-resource-body {
  flex: 1 1 auto;
}

.pres-resource-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.5;
  margin: 0 0 0.3rem;
}

.pres-resource-meta {
  font-size: 0.82rem;
  color: #6b6b6b;
  line-height: 1.5;
  margin: 0;
}

.pres-resource-action {
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .pres-resource-action {
    width: 100%;
  }
}

.pres-resource-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a1a1a;
  border: 1px solid #d8d8d6;
  padding: 0.45rem 1rem;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.pres-resource-btn svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}
.pres-resource-btn:hover {
  background-color: #1a1a1a;
  color: #ffffff;
  border-color: #1a1a1a;
}
@media (max-width: 576px) {
  .pres-resource-btn {
    width: 100%;
    justify-content: center;
  }
}

.site-footer {
  background-color: #0a0a0a;
  color: rgba(255, 255, 255, 0.75);
  padding: 1.7rem 0;
  font-size: 0.8rem;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.75);
}
.site-footer a:hover {
  color: #ffffff;
}
.site-footer .footer-social-btn {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.site-footer .footer-social-btn svg {
  width: 16px;
  height: 16px;
}
.site-footer .footer-social-btn:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.08);
}

.back-to-top-btn {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #1a1a1a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1040;
  border: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}
.back-to-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top-btn svg {
  width: 18px;
  height: 18px;
}
.back-to-top-btn:hover {
  background-color: #111111;
}

/* ==========================================================================
   FICHE PERSONNALITÉ
   ========================================================================== */
.detail-section {
  padding: 3rem 0 6rem;
}
@media (min-width: 992px) {
  .detail-section {
    padding: 5rem 0 8rem;
  }
}

.detail-header {
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .detail-header {
    margin-bottom: 4rem;
  }
}

.detail-back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #767676;
  margin-bottom: 0.85rem;
  transition: color 0.2s ease;
}
.detail-back svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.detail-back:hover {
  color: #1a1a1a;
}
.detail-back:hover svg {
  transform: translateX(-3px);
}

.detail-title {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.55rem;
}
@media (min-width: 992px) {
  .detail-title {
    font-size: 3rem;
  }
}

.detail-count {
  font-size: 0.9rem;
  color: #767676;
  margin: 0;
}

/* Grid layout — overrides horizontal slider while inheriting all visual card styles */
.archive-carousel.archive-carousel--grid {
  padding-left: 0;
  padding-right: 0;
}
.archive-carousel.archive-carousel--grid .archive-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  overflow-x: visible;
  scroll-behavior: auto;
  scroll-snap-type: none;
  padding-bottom: 0;
}
@media (max-width: 992px) {
  .archive-carousel.archive-carousel--grid .archive-track {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .archive-carousel.archive-carousel--grid .archive-track {
    grid-template-columns: 1fr;
  }
}
.archive-carousel.archive-carousel--grid .archive-item {
  flex: unset;
  min-width: 0;
  scroll-snap-align: none;
}

/* ==========================================================================
   ARCHIVES PHOTOGRAPHIQUES
   ========================================================================== */
.archives-photo-section {
  padding: 3rem 0 6rem;
}
@media (min-width: 992px) {
  .archives-photo-section {
    padding: 5rem 0 8rem;
  }
}

.archives-photo-header {
  margin-bottom: 2.5rem;
}
@media (min-width: 992px) {
  .archives-photo-header {
    margin-bottom: 3rem;
  }
}

.archives-photo-title {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.75rem;
}
@media (min-width: 992px) {
  .archives-photo-title {
    font-size: 3rem;
  }
}

.archives-photo-intro {
  font-size: 0.95rem;
  color: #767676;
  max-width: 560px;
  margin: 0;
}

/* Barre de filtres */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 992px) {
  .filter-bar {
    margin-bottom: 3rem;
  }
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1.1rem;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 1.5px solid #d8d8d6;
  border-radius: 2px;
  background: transparent;
  color: #767676;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.filter-btn:hover {
  border-color: #1a1a1a;
  color: #1a1a1a;
}
.filter-btn.is-active {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #ffffff;
}

/* Animation des cartes au filtrage */
.archive-carousel--grid .archive-item {
  transition: opacity 0.32s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Fondu de sortie : la carte s'efface et descend légèrement */
.archive-item.is-hiding {
  opacity: 0;
  transform: translateY(8px) scale(0.95);
  pointer-events: none;
}

/* Pré-état d'entrée : la carte apparaît depuis le bas */
.archive-item.is-will-enter {
  opacity: 0;
  transform: translateY(16px) scale(0.97);
}

/* Gel des transitions pendant le calcul inverse du FLIP */
.archive-item.is-flip-freeze {
  transition: none !important;
}

/* Carte entièrement masquée (retirée du flux de la grille) */
.archive-item.is-hidden {
  display: none;
}

/* ==========================================================================
   GALERIE PHOTO — DÉTAIL D'UN ALBUM
   ========================================================================== */
.gallery-album-meta {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #767676;
  margin: 0.35rem 0 0;
}

.gallery-album-desc {
  font-size: 0.95rem;
  color: #4a4a4a;
  max-width: 640px;
  margin: 1rem 0 0;
  line-height: 1.65;
}

.gallery-not-found {
  text-align: center;
  padding: 3rem 0 5rem;
  color: #767676;
  font-size: 1rem;
}

/* Tags — personnalités présentes sur une photo */
.gallery-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.65rem;
}

.gallery-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #767676;
  border: 1px solid #d8d8d6;
  border-radius: 2px;
  padding: 0.2rem 0.55rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.gallery-tag:hover {
  border-color: #1a1a1a;
  color: #1a1a1a;
}

/* Cartes cliquables dans les pages index */
a.archive-item {
  text-decoration: none;
  color: inherit;
}

/* ==========================================================================
   GALERIE VERTICALE — STYLE REPORTAGE / LIVRE PHOTO
   ========================================================================== */
.gallery-photo-list {
  margin-top: 3.5rem;
}

.gallery-photo-item {
  max-width: 720px;
  margin: 0 auto 5.5rem;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.gallery-photo-item.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 576px) {
  .gallery-photo-item {
    margin-bottom: 3.5rem;
  }
}

.gallery-photo-figure {
  margin: 0;
  position: relative;
}

.gallery-photo-img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-photo-footer {
  margin-top: 0.9rem;
  padding-left: 0.1rem;
}

.gallery-photo-caption {
  font-size: 0.875rem;
  color: #4a4a4a;
  line-height: 1.55;
  font-style: italic;
  margin: 0 0 0.55rem;
}

.gallery-photo-video-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #767676;
  margin-bottom: 0.55rem;
}
.gallery-photo-video-label svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

/* ==========================================================================
   PAGE FILMS & VIDÉOS
   ========================================================================== */
.video-section {
  padding: 3rem 0 6rem;
}
@media (min-width: 992px) {
  .video-section {
    padding: 5.5rem 0 8rem;
  }
}

.video-header {
  margin-bottom: 2.5rem;
}
@media (min-width: 992px) {
  .video-header {
    margin-bottom: 3rem;
  }
}

.video-title {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.75rem;
}
@media (min-width: 992px) {
  .video-title {
    font-size: 3rem;
  }
}

.video-intro {
  font-size: 0.95rem;
  color: #6b6b6b;
  max-width: 560px;
  margin: 0;
}

/* Badge durée — coin bas-droit de la miniature */
.archive-duration {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.72);
  border-radius: 2px;
  padding: 0.15rem 0.45rem;
  line-height: 1.4;
  pointer-events: none;
  white-space: nowrap;
}

/* Cartes vidéo : icône play visible au repos */
.archive-item--video .archive-play-icon {
  opacity: 0.8;
  transform: translate(-50%, -50%) scale(0.9);
}

.archive-item--video:hover .archive-play-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Méta-information (année · catégorie) */
.archive-meta {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #6b6b6b;
  margin-top: 0.35rem;
}

/* ==========================================================================
   DÉTAIL VIDÉO
   ========================================================================== */

/* Description introductive */
.detail-video-intro {
  max-width: 640px;
  margin: 0 0 2.5rem;
}
.detail-video-intro p {
  font-size: 0.95rem;
  color: #2c2c2c;
  line-height: 1.7;
  margin: 0 0 1em;
}
.detail-video-intro p:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .detail-video-intro {
    margin-bottom: 3.5rem;
  }
}

/* Lecteur vidéo — centré, largeur max élégante */
.detail-video-player-wrap {
  max-width: 860px;
  margin: 0 auto;
}
.detail-video-player-wrap video {
  width: 100%;
  height: auto;
  display: block;
  background: #0a0a0a;
}

/* Placeholder quand aucun fichier vidéo n'est encore associé */
.detail-video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #1c1c1c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.65rem;
}
.detail-video-placeholder svg {
  width: 36px;
  height: 36px;
  color: rgba(255, 255, 255, 0.25);
}
.detail-video-placeholder span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

/* Zone sous la vidéo : légende + métadonnées */
.detail-video-footer {
  max-width: 860px;
  margin: 1.25rem auto 0;
}

/* Légende — style éditorial identique aux légendes photo */
.detail-video-caption {
  font-size: 0.875rem;
  color: #4a4a4a;
  line-height: 1.55;
  font-style: italic;
  margin: 0;
}

/* Métadonnées (durée · année · lieu · format) */
.detail-video-meta {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2.5rem;
  row-gap: 1rem;
  margin: 1.5rem 0 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid #e2e2e0;
}

.detail-video-meta-item dt {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b6b6b;
  margin-bottom: 0.25rem;
}

.detail-video-meta-item dd {
  font-size: 0.9rem;
  color: #1a1a1a;
  margin: 0;
}
