/* ============================================================
   JHMA THEME — components.css
   ============================================================ */

/* ============================================================
   SECTION WRAPPERS
   ============================================================ */

.section {
  padding: 5rem 0;
}
.section--dark {
  background: var(--neutral);
}
.section--off {
  background: var(--off);
}

.section__header {
  margin-bottom: 3rem;
}

.section__header--center {
  text-align: center;
}

.section__header--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* ============================================================
   EVENT CARDS
   ============================================================ */

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.event-card {
  background: var(--white);
  border: 1px solid transparent;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.4s ease,
    border-color 0.4s ease,
    transform 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.event-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
  border-color: var(--primary);
}

.event-card__thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--off);
  position: relative;
}

.event-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.event-card:hover .event-card__thumb img {
  transform: scale(1.04);
}

.event-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  background: var(--primary);
  color: var(--neutral);
  z-index: 3;
}

.event-card__badge--upcoming {
  background: var(--primary);
  color: var(--neutral);
}
.event-card__badge--past {
  background: var(--muted);
  color: #fff;
}
.event-card__badge--cancelled {
  background: #dc3545;
  color: #fff;
}

.event-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.event-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
}

.event-card__title {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
  color: var(--neutral);
  margin: 0;
}

.event-card__desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}

.event-card__footer {
  padding: 0 1.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.event-card__lieu {
  font-size: 0.78rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ============================================================
   TEAM — BENTO GRID
   ============================================================ */

.team-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.member-card {
  background: #33333b;
  border: none;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow var(--ease), transform var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}

.member-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.member-card--large {
  grid-column: span 1; /* Resetting just in case */
}

.member-card__photo {
  overflow: hidden;
  background: var(--off);
  width: 100%;
}

.member-card--large .member-card__photo {
  /* Removed aspect ratio */
}

.member-card__photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}

.member-card:hover .member-card__photo img {
  transform: scale(1.05);
}

.member-card__body {
  padding: 1.5rem;
  background: #33333b;
  flex-grow: 1;
}

.member-card__name {
  font-family: inherit; /* Inherit sans-serif */
  font-weight: 400;
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.member-card__role {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: #e0e0e0;
  line-height: 1.4;
  margin-bottom: 0;
}

.member-card__major {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
}

/* ============================================================
   MODAL PROFIL MEMBRE
   ============================================================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.96) translateY(10px);
  transition: transform 0.3s ease;
}

.modal-overlay.is-open .modal {
  transform: scale(1) translateY(0);
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--neutral);
  color: var(--white);
  border: none;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
  font-size: 1.2rem;
  transition: background var(--ease);
}

.modal__close:hover {
  background: var(--primary);
  color: var(--neutral);
}

.modal__header {
  display: grid;
  grid-template-columns: 180px 1fr;
}

.modal__photo {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--off);
}

.modal__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.modal__info {
  padding: 2rem;
  background: var(--neutral);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal__role {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.modal__name {
  font-family: var(--condensed);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.modal__dept {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.modal__body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.modal__field-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.modal__field-value {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text);
}

.modal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.modal__tag {
  background: var(--off);
  border: 1px solid var(--border);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.65rem;
  color: var(--text);
}

.modal__links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ============================================================
   TEAM FILTERS
   ============================================================ */

.team-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.team-filter-btn {
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  transition: all var(--ease);
}

.team-filter-btn:hover,
.team-filter-btn.is-active {
  background: var(--neutral);
  color: var(--primary);
  border-color: var(--neutral);
}

/* ============================================================
   SPONSOR CARDS
   ============================================================ */

.sponsor-section {
  margin-bottom: 4rem;
}

.sponsor-section__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
}

.sponsor-section__icon {
  font-size: 1.2rem;
}

.sponsor-section__title {
  font-family: var(--condensed);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--neutral);
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.sponsors-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

.sponsor-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition:
    box-shadow var(--ease),
    transform var(--ease);
}

.sponsor-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.sponsor-card--official {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 2.5rem;
  padding: 2.5rem;
  border-left: 4px solid var(--primary);
}

.sponsor-card__logo {
  max-height: 60px;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter var(--ease);
}

.sponsor-card:hover .sponsor-card__logo {
  filter: none;
}

.sponsor-card__name {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--neutral);
}

.sponsor-card__since {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.sponsor-card__desc {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ============================================================
   ACCORDION FAQ
   ============================================================ */

.accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: color var(--ease);
}

.accordion-trigger:hover {
  color: var(--primary);
}

.accordion-trigger__text {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  color: inherit;
  line-height: 1.4;
}

.accordion-trigger__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--ease),
    border-color var(--ease),
    transform var(--ease);
}

.accordion-item.is-open .accordion-trigger__icon {
  background: var(--primary);
  border-color: var(--primary);
  transform: rotate(45deg);
}

.accordion-trigger__icon svg {
  color: var(--neutral);
}

.accordion-item.is-open .accordion-trigger__icon svg {
  color: var(--neutral);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
}

.accordion-item.is-open .accordion-content {
  max-height: 800px;
}

.accordion-content__inner {
  padding-bottom: 1.5rem;
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--muted);
}

.accordion-content__inner p {
  margin-bottom: 0.75rem;
}
.accordion-content__inner p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   PODCAST TABS
   ============================================================ */

.tabs {
  display: flex;
  border-bottom: 2px solid var(--border);
  margin-bottom: 2.5rem;
}

.tab-btn {
  padding: 0.85rem 1.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition:
    color var(--ease),
    border-color var(--ease);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tab-btn:hover {
  color: var(--primary);
}

.tab-btn.is-active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.tab-panel {
  display: none;
}
.tab-panel.is-active {
  display: block;
}

.podcast-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.podcast-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition:
    box-shadow var(--ease),
    transform var(--ease);
}

.podcast-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.podcast-card__embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--neutral);
}

.podcast-card__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.podcast-card__body {
  padding: 1.25rem;
}

.podcast-card__ep {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.podcast-card__title {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--neutral);
  line-height: 1.25;
  margin-bottom: 0.4rem;
}

.podcast-card__meta {
  font-size: 0.78rem;
  color: var(--muted);
  display: flex;
  gap: 0.75rem;
}

/* ============================================================
   NEWSLETTER CARDS
   ============================================================ */

.newsletter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.nl-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition:
    box-shadow var(--ease),
    transform var(--ease);
}

.nl-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.nl-card__edition {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

.nl-card__title {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--neutral);
  line-height: 1.2;
}

.nl-card__desc {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}

/* ============================================================
   REGISTRATION FORM
   ============================================================ */

.reg-form-wrap {
  background: var(--off);
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  padding: 2.5rem;
  max-width: 640px;
}

.reg-form-wrap h3 {
  font-family: var(--condensed);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--neutral);
  margin-bottom: 0.5rem;
}

.capacity-bar {
  margin-bottom: 1.5rem;
}

.capacity-bar__track {
  height: 8px;
  background: var(--border);
  overflow: hidden;
  margin-top: 0.4rem;
}

.capacity-bar__fill {
  height: 100%;
  background: var(--primary);
  transition: width 0.6s ease;
}

.reg-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reg-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.reg-message {
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.85rem 1.2rem;
  display: none;
}

.reg-message.success {
  display: block;
  background: rgba(var(--cyan-rgb), 0.1);
  border-left: 3px solid var(--primary);
  color: var(--primary-dk);
}

.reg-message.error {
  display: block;
  background: rgba(220, 53, 69, 0.08);
  border-left: 3px solid #dc3545;
  color: #dc3545;
}

/* ============================================================
   CTA BANDE
   ============================================================ */

.cta-band {
  background: var(--primary);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 30px,
    rgba(255, 255, 255, 0.04) 30px,
    rgba(255, 255, 255, 0.04) 31px
  );
}

.cta-band__content {
  position: relative;
  z-index: 1;
}

.cta-band__title {
  font-family: var(--condensed);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--neutral);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.cta-band__lead {
  font-size: 1.05rem;
  color: rgba(var(--black-rgb), 0.7);
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================
   WHO WE ARE — 2 colonnes
   ============================================================ */

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.who__img {
  position: relative;
  z-index: 1;
  margin-right: 1.5rem;
  margin-bottom: 1.5rem;
}

.who__img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 2;
}

.who__img::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 100%;
  height: 100%;
  border: 1px solid var(--primary);
  z-index: 0;
}

.who__text .section-title {
  margin-bottom: 1.5rem;
}

.who__lead {
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--neutral);
  margin-bottom: 1.5rem;
}

.who__desc {
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

/* ============================================================
   MVV — Mission/Vision/Values 3 cartes
   ============================================================ */

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.mvv-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.5rem 2rem;
  transition:
    border-color var(--ease),
    background var(--ease);
}

.mvv-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--primary);
}

.mvv-card__icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.mvv-card__title {
  font-family: var(--condensed);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.mvv-card__text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

/* ============================================================
   AFFILIATES
   ============================================================ */

.affiliates-title {
  font-family: var(--condensed);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}

.affiliates-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 2rem 0;
  display: flex;
  align-items: center;
}

.affiliates-marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
}

.affiliates-marquee:hover .affiliates-marquee__track {
  animation-play-state: paused;
}

.affiliate-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 110px;
  margin-right: 1.5rem; /* Margin réduit */
  padding: 0.75rem; /* Padding réduit pour maximiser la taille du logo */
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  text-decoration: none;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.affiliate-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border-color: var(--primary);
}

.affiliate-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--ease);
}

/* Ajustements spécifiques pour les logos avec trop de marges internes ou couleurs problématiques */
.affiliate-logo img[alt="CRHA / CPHR"],
.affiliate-logo img[alt="Enterprise Mobility"] {
  transform: scale(1.6);
}
.affiliate-logo:hover img[alt="CRHA / CPHR"],
.affiliate-logo:hover img[alt="Enterprise Mobility"] {
  transform: scale(1.75);
}

/* Le logo EY est blanc, on l'inverse pour le rendre noir sur le fond blanc */
.affiliate-logo img[alt="EY"] {
  filter: invert(1);
  transform: scale(1.4);
}
.affiliate-logo:hover img[alt="EY"] {
  filter: invert(1);
  transform: scale(1.55);
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral);
}

/* ============================================================
   PAGINATION
   ============================================================ */

.jhma-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.jhma-pagination a,
.jhma-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  transition: all var(--ease);
}

.jhma-pagination a:hover,
.jhma-pagination .current {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--neutral);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---- Tablette large (≤ 1024px) ---- */
@media (max-width: 1024px) {
  .events-grid,
  .podcast-grid,
  .newsletter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .member-card--large {
    grid-column: span 2;
  }
  .mvv-grid {
    grid-template-columns: repeat(3, 1fr);
  } /* reste 3 cols */
  .who-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .sponsors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sponsor-card--official {
    flex-direction: column;
  }
}

/* ---- Tablette portrait (≤ 768px) ---- */
@media (max-width: 768px) {
  .mvv-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .cta-band__btns {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-band__btns .btn-gold,
  .cta-band__btns .btn-ghost {
    text-align: center;
    justify-content: center;
  }
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__ctas .btn-gold,
  .hero__ctas .btn-ghost {
    text-align: center;
    justify-content: center;
  }
}

/* ---- Mobile portrait (≤ 640px) ---- */
@media (max-width: 640px) {
  .events-grid,
  .podcast-grid,
  .newsletter-grid,
  .sponsors-grid {
    grid-template-columns: 1fr;
  }
  .team-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .member-card--large {
    grid-column: span 2;
  }
  .reg-form__row {
    grid-template-columns: 1fr;
  }
  .modal__header {
    grid-template-columns: 1fr;
  }
  .modal__photo {
    max-height: 250px;
  }
  .reg-form-wrap {
    padding: 1.5rem;
  }
  .mvv-card {
    padding: 1.5rem;
  }
  .section {
    padding: 3rem 0;
  }
  .btn-register, .btn-register--cyan {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .cta-band {
    padding: 3rem 0;
  }
}
/* ============================================================
   WHO WE ARE — Styles 1, 2, 3
   À ajouter dans assets/css/components.css
   ============================================================ */

/* --- BASE COMMUNE --- */
.wwa {
  overflow: hidden;
}

.wwa-tag {
  font-size: 10px;
  font-weight: 800;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wwa-tag::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--cyan);
  flex-shrink: 0;
}
.wwa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.75rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  border: none;
  font-family: "Fira Sans", sans-serif;
  text-decoration: none;
  transition: opacity 0.2s;
}
.wwa-btn:hover {
  opacity: 0.85;
}

/* ============================================================
   STYLE 1 — Fond noir · titre massif · photo avec bordure cyan
   ============================================================ */
.wwa--s1 {
  background: var(--black);
  padding: 80px 40px;
}
.wwa--s1 .wwa-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.wwa--s1 .wwa-title {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.wwa--s1 .wwa-title span {
  color: var(--cyan);
}
.wwa--s1 .wwa-text {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.93rem;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 20px;
}
.wwa--s1 .wwa-hashtags {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.wwa--s1 .wwa-ht {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.wwa--s1 .wwa-ht::before {
  content: "";
  width: 16px;
  height: 2px;
  background: var(--cyan);
  flex-shrink: 0;
}
.wwa--s1 .wwa-btn {
  background: var(--cyan);
  color: var(--black);
}
.wwa--s1 .wwa-photo {
  position: relative;
}
.wwa--s1 .wwa-photo::before {
  content: "";
  position: absolute;
  top: -14px;
  right: -14px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--cyan);
  z-index: 0;
}
.wwa--s1 .wwa-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top;
  display: block;
  filter: grayscale(15%);
}
@media (max-width: 900px) {
  .wwa--s1 .wwa-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .wwa--s1 .wwa-photo::before {
    display: none;
  }
  .wwa--s1 .wwa-photo img {
    height: 300px;
  }
}
@media (max-width: 640px) {
  .wwa--s1 {
    padding: 50px 20px;
  }
  .wwa--s1 .wwa-title {
    font-size: 2.4rem;
  }
  .wwa--s1 .wwa-photo img {
    height: 240px;
  }
}

/* ============================================================
   STYLE 2 — Bande noire gauche · texte + photo à droite
   ============================================================ */
.wwa--s2 {
  background: #fff;
  padding: 0;
}
.wwa--s2 .wwa-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  min-height: 420px;
}
.wwa--s2 .wwa-left {
  background: var(--black);
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wwa--s2 .wwa-title {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.02em;
}
.wwa--s2 .wwa-title span {
  color: var(--cyan);
  display: block;
}
.wwa--s2 .wwa-line {
  width: 40px;
  height: 3px;
  background: var(--cyan);
  margin: 20px 0;
}
.wwa--s2 .wwa-hashtags {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wwa--s2 .wwa-ht {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-left: 10px;
  border-left: 2px solid rgba(var(--cyan-rgb), 0.3);
}
.wwa--s2 .wwa-right {
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.wwa--s2 .wwa-text p {
  color: #6b7280;
  font-size: 0.93rem;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 16px;
}
.wwa--s2 .wwa-btn {
  background: var(--black);
  color: #fff;
  margin-top: 8px;
}
.wwa--s2 .wwa-photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top;
  display: block;
}
@media (max-width: 900px) {
  .wwa--s2 .wwa-inner {
    grid-template-columns: 1fr;
  }
  .wwa--s2 .wwa-right {
    grid-template-columns: 1fr;
    padding: 40px;
  }
  .wwa--s2 .wwa-photo img {
    height: 240px;
  }
}
@media (max-width: 640px) {
  .wwa--s2 .wwa-left {
    padding: 40px 24px;
  }
  .wwa--s2 .wwa-title {
    font-size: 2.2rem;
  }
  .wwa--s2 .wwa-right {
    padding: 32px 24px;
    gap: 24px;
  }
}

/* ============================================================
   STYLE 3 — Split image + overlay · hashtags avec texte
   ============================================================ */
.wwa--s3 {
  background: #fff;
  overflow: hidden;
}
.wwa--s3 .wwa-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
}
.wwa--s3 .wwa-photo {
  position: relative;
  overflow: hidden;
}
.wwa--s3 .wwa-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  min-height: 480px;
}
.wwa--s3 .wwa-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(var(--black-rgb), 0.88) 0%,
    rgba(var(--black-rgb), 0.45) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 40px;
}
.wwa--s3 .wwa-photo-title {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.02em;
}
.wwa--s3 .wwa-photo-title span {
  color: var(--cyan);
}
.wwa--s3 .wwa-content {
  background: var(--cyan);
  padding: 50px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wwa--s3 .wwa-hashtag-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}
.wwa--s3 .wwa-ht-tag {
  font-size: 10px;
  font-weight: 800;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wwa--s3 .wwa-ht-tag::before {
  content: "#";
  color: var(--black);
  font-size: 11px;
  font-weight: 800;
}
.wwa--s3 .wwa-ht-text {
  font-size: 0.83rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.7;
  font-weight: 500;
  padding-left: 18px;
}
.wwa--s3 .wwa-divider {
  width: 40px;
  height: 2px;
  background: var(--black);
  margin: 24px 0;
}
.wwa--s3 .wwa-btn {
  background: var(--black);
  color: var(--white);
  align-self: flex-start;
}
@media (max-width: 900px) {
  .wwa--s3 .wwa-inner {
    grid-template-columns: 1fr;
  }
  .wwa--s3 .wwa-photo img {
    min-height: 300px;
    height: 300px;
  }
  .wwa--s3 .wwa-content {
    padding: 40px 32px;
  }
}
@media (max-width: 640px) {
  .wwa--s3 .wwa-overlay {
    padding: 32px 24px;
  }
  .wwa--s3 .wwa-photo-title {
    font-size: 2rem;
  }
  .wwa--s3 .wwa-content {
    padding: 32px 24px;
  }
  .wwa--s3 .wwa-ht-text {
    font-size: 0.78rem;
  }
}
/* ============================================================
   WHO WE ARE — Styles 1, 2, 3
   À ajouter dans assets/css/components.css
   ============================================================ */

/* --- BASE COMMUNE --- */
.wwa {
  overflow: hidden;
}

.wwa-tag {
  font-size: 10px;
  font-weight: 800;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wwa-tag::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--cyan);
  flex-shrink: 0;
}
.wwa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.75rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  border: none;
  font-family: "Fira Sans", sans-serif;
  text-decoration: none;
  transition: opacity 0.2s;
}
.wwa-btn:hover {
  opacity: 0.85;
}

/* ============================================================
   STYLE 1 — Fond noir · titre massif · photo avec bordure cyan
   ============================================================ */
.wwa--s1 {
  background: var(--black);
  padding: 80px 40px;
}
.wwa--s1 .wwa-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.wwa--s1 .wwa-title {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.wwa--s1 .wwa-title span {
  color: var(--cyan);
}
.wwa--s1 .wwa-text {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.93rem;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 20px;
}
.wwa--s1 .wwa-hashtags {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.wwa--s1 .wwa-ht {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.wwa--s1 .wwa-ht::before {
  content: "";
  width: 16px;
  height: 2px;
  background: var(--cyan);
  flex-shrink: 0;
}
.wwa--s1 .wwa-btn {
  background: var(--cyan);
  color: var(--black);
}
.wwa--s1 .wwa-photo {
  position: relative;
}
.wwa--s1 .wwa-photo::before {
  content: "";
  position: absolute;
  top: -14px;
  right: -14px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--cyan);
  z-index: 0;
}
.wwa--s1 .wwa-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top;
  display: block;
  filter: grayscale(15%);
}
@media (max-width: 900px) {
  .wwa--s1 .wwa-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .wwa--s1 .wwa-photo::before {
    display: none;
  }
  .wwa--s1 .wwa-photo img {
    height: 300px;
  }
}
@media (max-width: 640px) {
  .wwa--s1 {
    padding: 50px 20px;
  }
  .wwa--s1 .wwa-title {
    font-size: 2.4rem;
  }
  .wwa--s1 .wwa-photo img {
    height: 240px;
  }
}

/* ============================================================
   STYLE 2 — Bande noire gauche · texte + photo à droite
   ============================================================ */
.wwa--s2 {
  background: #fff;
  padding: 0;
}
.wwa--s2 .wwa-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  min-height: 420px;
}
.wwa--s2 .wwa-left {
  background: var(--black);
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wwa--s2 .wwa-title {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.02em;
}
.wwa--s2 .wwa-title span {
  color: var(--cyan);
  display: block;
}
.wwa--s2 .wwa-line {
  width: 40px;
  height: 3px;
  background: var(--cyan);
  margin: 20px 0;
}
.wwa--s2 .wwa-hashtags {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wwa--s2 .wwa-ht {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-left: 10px;
  border-left: 2px solid rgba(var(--cyan-rgb), 0.3);
}
.wwa--s2 .wwa-right {
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.wwa--s2 .wwa-text p {
  color: #6b7280;
  font-size: 0.93rem;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 16px;
}
.wwa--s2 .wwa-btn {
  background: var(--black);
  color: #fff;
  margin-top: 8px;
}
.wwa--s2 .wwa-photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top;
  display: block;
}
@media (max-width: 900px) {
  .wwa--s2 .wwa-inner {
    grid-template-columns: 1fr;
  }
  .wwa--s2 .wwa-right {
    grid-template-columns: 1fr;
    padding: 40px;
  }
  .wwa--s2 .wwa-photo img {
    height: 240px;
  }
}
@media (max-width: 640px) {
  .wwa--s2 .wwa-left {
    padding: 40px 24px;
  }
  .wwa--s2 .wwa-title {
    font-size: 2.2rem;
  }
  .wwa--s2 .wwa-right {
    padding: 32px 24px;
    gap: 24px;
  }
}

/* ============================================================
   STYLE 3 — Split image + overlay · hashtags avec texte
   ============================================================ */
.wwa--s3 {
  background: #fff;
  overflow: hidden;
}
.wwa--s3 .wwa-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
}
.wwa--s3 .wwa-photo {
  position: relative;
  overflow: hidden;
}
.wwa--s3 .wwa-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  min-height: 480px;
}
.wwa--s3 .wwa-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(var(--black-rgb), 0.88) 0%,
    rgba(var(--black-rgb), 0.45) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 40px;
}
.wwa--s3 .wwa-photo-title {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.02em;
}
.wwa--s3 .wwa-photo-title span {
  color: var(--cyan);
}
.wwa--s3 .wwa-content {
  background: var(--black);
  padding: 50px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wwa--s3 .wwa-hashtag-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}
.wwa--s3 .wwa-ht-tag {
  font-size: 10px;
  font-weight: 800;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wwa--s3 .wwa-ht-tag::before {
  content: "#";
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
}
.wwa--s3 .wwa-ht-text {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  font-weight: 300;
  padding-left: 18px;
}
.wwa--s3 .wwa-divider {
  width: 40px;
  height: 2px;
  background: var(--cyan);
  margin: 24px 0;
}
.wwa--s3 .wwa-btn {
  background: var(--cyan);
  color: var(--black);
  align-self: flex-start;
}
@media (max-width: 900px) {
  .wwa--s3 .wwa-inner {
    grid-template-columns: 1fr;
  }
  .wwa--s3 .wwa-photo img {
    min-height: 300px;
    height: 300px;
  }
  .wwa--s3 .wwa-content {
    padding: 40px 32px;
  }
}
@media (max-width: 640px) {
  .wwa--s3 .wwa-overlay {
    padding: 32px 24px;
  }
  .wwa--s3 .wwa-photo-title {
    font-size: 2rem;
  }
  .wwa--s3 .wwa-content {
    padding: 32px 24px;
  }
  .wwa--s3 .wwa-ht-text {
    font-size: 0.78rem;
  }
}
/* ============================================================
   WHO WE ARE — Styles 1, 2, 3
   À ajouter dans assets/css/components.css
   ============================================================ */

/* --- BASE COMMUNE --- */
.wwa {
  overflow: hidden;
}

.wwa-tag {
  font-size: 10px;
  font-weight: 800;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wwa-tag::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--cyan);
  flex-shrink: 0;
}
.wwa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.75rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  border: none;
  font-family: "Fira Sans", sans-serif;
  text-decoration: none;
  transition: opacity 0.2s;
}
.wwa-btn:hover {
  opacity: 0.85;
}

/* ============================================================
   STYLE 1 — Fond noir · titre massif · photo avec bordure cyan
   ============================================================ */
.wwa--s1 {
  background: var(--black);
  padding: 80px 40px;
}
.wwa--s1 .wwa-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.wwa--s1 .wwa-title {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.wwa--s1 .wwa-title span {
  color: var(--cyan);
}
.wwa--s1 .wwa-text {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.93rem;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 20px;
}
.wwa--s1 .wwa-hashtags {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.wwa--s1 .wwa-ht {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.wwa--s1 .wwa-ht::before {
  content: "";
  width: 16px;
  height: 2px;
  background: var(--cyan);
  flex-shrink: 0;
}
.wwa--s1 .wwa-btn {
  background: var(--cyan);
  color: var(--black);
}
.wwa--s1 .wwa-photo {
  position: relative;
}
.wwa--s1 .wwa-photo::before {
  content: "";
  position: absolute;
  top: -14px;
  right: -14px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--cyan);
  z-index: 0;
}
.wwa--s1 .wwa-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top;
  display: block;
  filter: grayscale(15%);
}
@media (max-width: 900px) {
  .wwa--s1 .wwa-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .wwa--s1 .wwa-photo::before {
    display: none;
  }
  .wwa--s1 .wwa-photo img {
    height: 300px;
  }
}
@media (max-width: 640px) {
  .wwa--s1 {
    padding: 50px 20px;
  }
  .wwa--s1 .wwa-title {
    font-size: 2.4rem;
  }
  .wwa--s1 .wwa-photo img {
    height: 240px;
  }
}

/* ============================================================
   STYLE 2 — Bande noire gauche · texte + photo à droite
   ============================================================ */
.wwa--s2 {
  background: #fff;
  padding: 0;
}
.wwa--s2 .wwa-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  min-height: 420px;
}
.wwa--s2 .wwa-left {
  background: var(--black);
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wwa--s2 .wwa-title {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.02em;
}
.wwa--s2 .wwa-title span {
  color: var(--cyan);
  display: block;
}
.wwa--s2 .wwa-line {
  width: 40px;
  height: 3px;
  background: var(--cyan);
  margin: 20px 0;
}
.wwa--s2 .wwa-hashtags {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wwa--s2 .wwa-ht {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-left: 10px;
  border-left: 2px solid rgba(var(--cyan-rgb), 0.3);
}
.wwa--s2 .wwa-right {
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.wwa--s2 .wwa-text p {
  color: #6b7280;
  font-size: 0.93rem;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 16px;
}
.wwa--s2 .wwa-btn {
  background: var(--black);
  color: #fff;
  margin-top: 8px;
}
.wwa--s2 .wwa-photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top;
  display: block;
}
@media (max-width: 900px) {
  .wwa--s2 .wwa-inner {
    grid-template-columns: 1fr;
  }
  .wwa--s2 .wwa-right {
    grid-template-columns: 1fr;
    padding: 40px;
  }
  .wwa--s2 .wwa-photo img {
    height: 240px;
  }
}
@media (max-width: 640px) {
  .wwa--s2 .wwa-left {
    padding: 40px 24px;
  }
  .wwa--s2 .wwa-title {
    font-size: 2.2rem;
  }
  .wwa--s2 .wwa-right {
    padding: 32px 24px;
    gap: 24px;
  }
}

/* ============================================================
   STYLE 3 — Split image + overlay · hashtags avec texte
   ============================================================ */
.wwa--s3 {
  background: #fff;
  overflow: hidden;
}
.wwa--s3 .wwa-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
}
.wwa--s3 .wwa-photo {
  position: relative;
  overflow: hidden;
}
.wwa--s3 .wwa-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  min-height: 480px;
}
.wwa--s3 .wwa-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(var(--black-rgb), 0.88) 0%,
    rgba(var(--black-rgb), 0.45) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 40px;
}
.wwa--s3 .wwa-photo-title {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.02em;
}
.wwa--s3 .wwa-photo-title span {
  color: var(--cyan);
}
.wwa--s3 .wwa-content {
  background: var(--black);
  padding: 50px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wwa--s3 .wwa-hashtag-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}
.wwa--s3 .wwa-ht-tag {
  font-size: 10px;
  font-weight: 800;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wwa--s3 .wwa-ht-tag::before {
  content: "#";
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
}
.wwa--s3 .wwa-ht-text {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  font-weight: 300;
  padding-left: 18px;
}
.wwa--s3 .wwa-divider {
  width: 40px;
  height: 2px;
  background: var(--cyan);
  margin: 24px 0;
}
.wwa--s3 .wwa-btn {
  background: var(--cyan);
  color: var(--black);
  align-self: flex-start;
}
@media (max-width: 900px) {
  .wwa--s3 .wwa-inner {
    grid-template-columns: 1fr;
  }
  .wwa--s3 .wwa-photo img {
    min-height: 300px;
    height: 300px;
  }
  .wwa--s3 .wwa-content {
    padding: 40px 32px;
  }
}
@media (max-width: 640px) {
  .wwa--s3 .wwa-overlay {
    padding: 32px 24px;
  }
  .wwa--s3 .wwa-photo-title {
    font-size: 2rem;
  }
  .wwa--s3 .wwa-content {
    padding: 32px 24px;
  }
  .wwa--s3 .wwa-ht-text {
    font-size: 0.78rem;
  }
}
/* ============================================================
   MVV — Mission · Vision · Values
   Styles 1, 2, 3
   À ajouter dans assets/css/components.css
   ============================================================ */

/* --- TAG COMMUN --- */
.mvv-tag {
  font-size: 10px;
  font-weight: 800;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.mvv-tag::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--cyan);
  flex-shrink: 0;
}

/* ============================================================
   STYLE 1 — Fond noir · numéros · hover cyan
   ============================================================ */
.mvv--s1 {
  background: var(--black);
  padding: 80px 40px;
}
.mvv--s1 .mvv-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.mvv--s1 .mvv-header {
  margin-bottom: 48px;
}
.mvv--s1 .mvv-title {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.02em;
}
.mvv--s1 .mvv-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.mvv--s1 .mvv-card {
  background: #222;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
  cursor: default;
}
.mvv--s1 .mvv-card:hover {
  background: #252525;
}
.mvv--s1 .mvv-card-num {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.25s;
  letter-spacing: 0.02em;
}
.mvv--s1 .mvv-card:hover .mvv-card-num {
  color: rgba(var(--cyan-rgb), 0.15);
}
.mvv--s1 .mvv-card-label {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
}
.mvv--s1 .mvv-card-title {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  transition: color 0.25s;
}
.mvv--s1 .mvv-card:hover .mvv-card-title {
  color: var(--cyan);
}
.mvv--s1 .mvv-card-text {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
  font-weight: 300;
}
.mvv--s1 .mvv-card-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--cyan);
  transition: width 0.35s ease;
}
.mvv--s1 .mvv-card:hover .mvv-card-line {
  width: 100%;
}

@media (max-width: 900px) {
  .mvv--s1 .mvv-cards {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .mvv--s1 .mvv-card-num {
    font-size: 3.5rem;
  }
}
@media (max-width: 640px) {
  .mvv--s1 {
    padding: 50px 20px;
  }
  .mvv--s1 .mvv-title {
    font-size: 2rem;
  }
}

/* ============================================================
   STYLE 2 — Fond blanc · numéros larges en bg
   ============================================================ */
.mvv--s2 {
  background: #fff;
  padding: 80px 40px;
}
.mvv--s2 .mvv-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.mvv--s2 .mvv-header {
  margin-bottom: 48px;
}
.mvv--s2 .mvv-tag::before {
  background: var(--cyan);
}
.mvv--s2 .mvv-title {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--black);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.02em;
}
.mvv--s2 .mvv-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mvv--s2 .mvv-card {
  position: relative;
  border: 1.5px solid #e5e7eb;
  padding: 40px 28px 36px;
  overflow: hidden;
  transition:
    border-color 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.mvv--s2 .mvv-card:hover {
  border-color: var(--cyan);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(var(--cyan-rgb), 0.1);
}
.mvv--s2 .mvv-card-bg-num {
  position: absolute;
  top: -16px;
  right: -8px;
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 8rem;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
  letter-spacing: 0.02em;
  pointer-events: none;
  transition: color 0.2s;
}
.mvv--s2 .mvv-card:hover .mvv-card-bg-num {
  color: rgba(var(--cyan-rgb), 0.06);
}
.mvv--s2 .mvv-card-body {
  position: relative;
  z-index: 1;
}
.mvv--s2 .mvv-card-label {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mvv--s2 .mvv-card-label::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--cyan);
  flex-shrink: 0;
}
.mvv--s2 .mvv-card-title {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--black);
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.mvv--s2 .mvv-card-text {
  font-size: 0.83rem;
  color: #6b7280;
  line-height: 1.8;
  font-weight: 300;
}

@media (max-width: 900px) {
  .mvv--s2 .mvv-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
@media (max-width: 640px) {
  .mvv--s2 {
    padding: 50px 20px;
  }
  .mvv--s2 .mvv-title {
    font-size: 2rem;
  }
}

/* ============================================================
   STYLE 3 — Asymétrique noir / cyan / noir
   ============================================================ */
.mvv--s3 {
  padding: 0;
  overflow: hidden;
}
.mvv--s3 .mvv-inner {
  max-width: 100%;
}
.mvv--s3 .mvv-s3-header {
  max-width: 1140px;
  margin: 0 auto;
  padding: 60px 40px 48px;
}
.mvv--s3 .mvv-title {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--black);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.02em;
}
.mvv--s3 .mvv-s3-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 400px;
}

/* Card 1 — noir */
.mvv--s3 .mvv-s3-card--1 {
  background: var(--black);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
/* Card 2 — cyan */
.mvv--s3 .mvv-s3-card--2 {
  background: var(--cyan);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
/* Card 3 — noir */
.mvv--s3 .mvv-s3-card--3 {
  background: var(--black);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.mvv--s3 .mvv-s3-card-num {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 6rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 24px;
  display: block;
  letter-spacing: 0.02em;
}
.mvv--s3 .mvv-s3-card--1 .mvv-s3-card-num,
.mvv--s3 .mvv-s3-card--3 .mvv-s3-card-num {
  color: rgba(var(--cyan-rgb), 0.2);
}
.mvv--s3 .mvv-s3-card--2 .mvv-s3-card-num {
  color: rgba(var(--black-rgb), 0.15);
}

.mvv--s3 .mvv-s3-card-label {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
}
.mvv--s3 .mvv-s3-card--1 .mvv-s3-card-label,
.mvv--s3 .mvv-s3-card--3 .mvv-s3-card-label {
  color: var(--cyan);
}
.mvv--s3 .mvv-s3-card--2 .mvv-s3-card-label {
  color: rgba(var(--black-rgb), 0.6);
}

.mvv--s3 .mvv-s3-card-title {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.mvv--s3 .mvv-s3-card--1 .mvv-s3-card-title,
.mvv--s3 .mvv-s3-card--3 .mvv-s3-card-title {
  color: #fff;
}
.mvv--s3 .mvv-s3-card--2 .mvv-s3-card-title {
  color: var(--black);
}

.mvv--s3 .mvv-s3-card-text {
  font-size: 0.83rem;
  line-height: 1.8;
  font-weight: 300;
}
.mvv--s3 .mvv-s3-card--1 .mvv-s3-card-text,
.mvv--s3 .mvv-s3-card--3 .mvv-s3-card-text {
  color: rgba(255, 255, 255, 0.45);
}
.mvv--s3 .mvv-s3-card--2 .mvv-s3-card-text {
  color: rgba(var(--black-rgb), 0.65);
}

.mvv--s3 .mvv-s3-card-deco {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
}
.mvv--s3 .mvv-s3-card--1 .mvv-s3-card-deco,
.mvv--s3 .mvv-s3-card--3 .mvv-s3-card-deco {
  border: 2px solid rgba(var(--cyan-rgb), 0.08);
}
.mvv--s3 .mvv-s3-card--2 .mvv-s3-card-deco {
  border: 2px solid rgba(var(--black-rgb), 0.08);
}

@media (max-width: 900px) {
  .mvv--s3 .mvv-s3-grid {
    grid-template-columns: 1fr;
  }
  .mvv--s3 .mvv-s3-card-num {
    font-size: 4rem;
  }
}
@media (max-width: 640px) {
  .mvv--s3 .mvv-s3-header {
    padding: 40px 20px 32px;
  }
  .mvv--s3 .mvv-s3-card--1,
  .mvv--s3 .mvv-s3-card--2,
  .mvv--s3 .mvv-s3-card--3 {
    padding: 36px 24px;
  }
  .mvv--s3 .mvv-title {
    font-size: 2rem;
  }
}
/* ============================================================
   JHMA — Pages CSS
   Tous les styles des pages secondaires
   ============================================================ */
:root {
  --black: #1a1a1a;
  --cyan: var(--cyan);
  --gray: #f4f4f4;
  --muted: #6b7280;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
body {
  font-family: "Fira Sans", sans-serif;
  color: var(--black);
}

/* ============================================================
   PAGE HEADER — BASE
   ============================================================ */
.page-header {
  padding: 220px 40px 60px; /* Padding top augmenté pour la nav absolue */
  position: relative;
  overflow: hidden;
}
.page-header--dark {
  background: var(--black);
}
.page-header--pattern::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 18px,
    rgba(var(--cyan-rgb), 0.03) 18px,
    rgba(var(--cyan-rgb), 0.03) 19px
  );
}
.page-header-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-header-inner--split {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
}
.ph-tag {
  font-size: 10px;
  font-weight: 800;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.ph-tag::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--cyan);
}
.page-header h1 {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.page-header h1 span {
  color: var(--cyan);
}
.ph-sub {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
  max-width: 500px;
  line-height: 1.75;
}
.ph-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.ph-meta-item {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
}
.ph-meta-item strong {
  color: var(--cyan);
  font-size: 1.1rem;
}
.ph-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: right;
  flex-shrink: 0;
}
.ph-stat-val {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
}
.ph-stat-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.page-header-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}
.quick-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #222;
}
.quick-contact-icon {
  width: 40px;
  height: 40px;
  background: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.quick-contact-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--black);
}
.quick-contact-label {
  font-size: 0.6rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 3px;
}
.quick-contact-val {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

/* ============================================================
   COMMON SECTION ELEMENTS
   ============================================================ */
.section-tag {
  font-size: 10px;
  font-weight: 800;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.section-tag::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--cyan);
}
.section-title {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.02em;
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 20px;
  flex-wrap: wrap;
}
.view-all {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--cyan);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 2px solid var(--cyan);
  padding-bottom: 2px;
}


/* ============================================================
   FILTERS BAR
   ============================================================ */
.filters-bar,
.dept-filters,
.type-filters {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 0 40px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.filters-bar-inner,
.dept-filters-inner,
.type-filters-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}
.filters-bar-inner::-webkit-scrollbar,
.dept-filters-inner::-webkit-scrollbar,
.type-filters-inner::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}
.filter-btn,
.dept-btn,
.type-btn,
.tier-btn {
  padding: 18px 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition:
    color 0.15s,
    border-color 0.15s;
}
.filter-btn.active,
.dept-btn.active,
.type-btn.active,
.tier-btn.active {
  color: var(--cyan);
  border-bottom-color: var(--cyan);
}
.filter-btn:hover,
.dept-btn:hover,
.type-btn:hover {
  color: var(--black);
}
.filters-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  flex-shrink: 0;
}
.search-input {
  padding: 8px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 4px;
  font-size: 0.8rem;
  font-family: "Fira Sans", sans-serif;
  color: var(--black);
  outline: none;
  width: 200px;
}
.search-input:focus {
  border-color: var(--cyan);
}
.dept-btn .count {
  font-size: 0.65rem;
  background: var(--gray);
  color: var(--muted);
  padding: 1px 6px;
  border-radius: 10px;
}
.dept-btn.active .count {
  background: rgba(var(--cyan-rgb), 0.1);
  color: var(--cyan);
}

/* ============================================================
   EVENTS PAGE
   ============================================================ */
.events-section {
  padding: 60px 40px;
}
.events-section-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.event-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  transition:
    border-color 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  overflow: hidden;
}
.event-card:hover {
  border-color: var(--cyan);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(var(--cyan-rgb), 0.12);
}
.event-card--featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.event-card-img {
  position: relative;
  overflow: hidden;
  background: var(--black);
  background-size: cover;
  background-position: center;
}
.event-card--featured .event-card-img {
  min-height: 280px;
}
.event-card:not(.event-card--featured) .event-card-img {
  height: 180px;
}
.event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  display: block;
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.event-card:hover .event-card-img img {
  opacity: 0.85;
  transform: scale(1.03);
}
.event-card-date-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--cyan);
  color: var(--black);
  padding: 8px 12px;
  text-align: center;
  min-width: 52px;
}
.event-card-date-badge .day {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}
.event-card-date-badge .month {
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
}
.event-card-status {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
}
.status-upcoming {
  background: rgba(var(--cyan-rgb), 0.15);
  color: var(--cyan);
}
.status-past {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}
.status-cancelled {
  background: rgba(220, 38, 38, 0.15);
  color: #dc2626;
}
.event-card-body {
  padding: 24px;
}
.event-card--featured .event-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.event-card-type {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.event-card-title {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--black);
}
.event-card-title a {
  color: inherit;
  text-decoration: none;
}
.event-card--featured .event-card-title {
  font-size: 1.8rem;
}
.event-card-desc {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 16px;
}
.event-card-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.event-card-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}
.event-card-meta-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--cyan);
  flex-shrink: 0;
}
.event-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}
.event-card-spots {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.event-card-spots span {
  color: var(--black);
}
.no-events {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}
.no-events a {
  color: var(--cyan);
}

/* Past events accordion */
.past-section {
  background: var(--gray);
  padding: 60px 40px;
}
.past-section-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.accordion-year {
  background: #fff;
  border: 1px solid #e5e7eb;
  margin-bottom: 8px;
}
.accordion-trigger {
  width: 100%;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Fira Sans", sans-serif;
  text-align: left;
}
.accordion-trigger-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.accordion-year-label {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--black);
}
.accordion-year-count {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cyan);
  background: rgba(var(--cyan-rgb), 0.1);
  padding: 3px 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.accordion-chevron {
  width: 20px;
  height: 20px;
  stroke: var(--muted);
  transition: transform 0.25s;
}
.accordion-year.open .accordion-chevron {
  transform: rotate(180deg);
}
.accordion-body {
  display: none;
  padding: 0 28px 24px;
}
.accordion-year.open .accordion-body {
  display: block;
}
.past-events-list {
  display: flex;
  flex-direction: column;
}
.past-event-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}
.past-event-row:last-child {
  border-bottom: none;
}
.past-event-date {
  text-align: center;
}
.past-event-date .day {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--muted);
  display: block;
  line-height: 1;
}
.past-event-date .month {
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  display: block;
}
.past-event-type {
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.past-event-title {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
}
.past-event-title a {
  color: inherit;
  text-decoration: none;
}
.past-event-title a:hover {
  color: var(--cyan);
}
.past-event-location {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 3px;
}

.events-cta {
  background: var(--cyan);
  padding: 48px 40px;
}
.events-cta-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.events-cta-tag {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(var(--black-rgb), 0.5);
  margin-bottom: 8px;
}
.events-cta-title {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1;
}
.events-cta-sub {
  font-size: 0.85rem;
  color: rgba(var(--black-rgb), 0.65);
  margin-top: 6px;
}

/* ============================================================
   SINGLE EVENT
   ============================================================ */
.event-hero {
  position: relative;
  height: 520px;
  overflow: hidden;
  background: var(--black);
}
.event-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  position: absolute;
  inset: 0;
}
.event-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(var(--black-rgb), 0.3) 0%,
    rgba(var(--black-rgb), 0.95) 100%
  );
}
.event-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 40px;
  max-width: 1140px;
  margin: 0 auto;
}
.event-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.event-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
}
.event-hero-breadcrumb a:hover {
  color: var(--cyan);
}
.event-hero-type {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--black);
  background: var(--cyan);
  padding: 4px 12px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.event-hero-title {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.event-hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.event-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}
.event-hero-meta-item svg {
  width: 15px;
  height: 15px;
  stroke: var(--cyan);
  flex-shrink: 0;
}
.event-status-badge {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  background: rgba(var(--cyan-rgb), 0.15);
  color: var(--cyan);
}
.info-bar {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 0 40px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.info-bar-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.info-bar-details {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
  flex-wrap: wrap;
}
.info-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
}
.info-bar-item svg {
  width: 13px;
  height: 13px;
  stroke: var(--cyan);
}
.info-bar-cta {
  padding: 12px 0;
}
.event-content {
  padding: 60px 40px;
}
.event-content-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}
.content-section {
  margin-bottom: 48px;
}
.content-section-label {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.content-section-label::before {
  content: "";
  width: 16px;
  height: 2px;
  background: var(--cyan);
}
.content-section h2 {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.event-description p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 16px;
}
.event-sidebar {
  position: sticky;
  top: 80px;
}
.register-card {
  border: 1px solid #e5e7eb;
  margin-bottom: 20px;
  overflow: hidden;
}
.register-card-header {
  background: var(--black);
  padding: 20px 24px;
}
.register-card-title {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.register-card-sub {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}
.register-card-body {
  padding: 24px;
}
.register-spots {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
}
.register-spots-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.register-spots-count {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--black);
}
.info-card {
  border: 1px solid #e5e7eb;
  overflow: hidden;
  margin-bottom: 20px;
}
.info-card-header {
  padding: 14px 20px;
  background: var(--gray);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--black);
}
.info-card-list {
  padding: 0;
  list-style: none;
}
.info-card-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid #f0f0f0;
}
.info-card-item:last-child {
  border-bottom: none;
}
.info-card-icon-wrap {
  width: 24px;
  flex-shrink: 0;
}
.info-card-icon {
  width: 16px;
  height: 16px;
  stroke: var(--cyan);
}
.info-card-key {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.info-card-val {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.3;
}
.related-section {
  background: var(--gray);
  padding: 48px 40px;
}
.related-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.related-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  transition:
    border-color 0.2s,
    transform 0.2s;
  cursor: pointer;
}
.related-card:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
}
.related-card-thumb {
  height: 140px;
  overflow: hidden;
  background: var(--black);
  position: relative;
}
.related-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  display: block;
}
.related-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--cyan);
  color: var(--black);
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 8px;
}
.related-card-body {
  padding: 16px;
}
.related-card-date {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.related-card-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
}
.related-card-title a {
  color: inherit;
  text-decoration: none;
}
.related-card-title a:hover {
  color: var(--cyan);
}

/* ============================================================
   MEMBERS PAGE
   ============================================================ */
.leadership {
  background: var(--black);
  padding: 60px 40px;
}
.leadership-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.leadership-tag {
  font-size: 10px;
  font-weight: 800;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}
.leadership-tag::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--cyan);
}
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.leader-card {
  background: #222;
  display: grid;
  grid-template-columns: 200px 1fr;
  overflow: hidden;
  transition: background 0.2s;
  cursor: pointer;
}
.leader-card:hover {
  background: #252525;
}
.leader-card-photo {
  position: relative;
  overflow: hidden;
  height: 260px;
}
.leader-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  filter: grayscale(20%);
  transition:
    filter 0.3s,
    transform 0.3s;
}
.leader-card:hover .leader-card-photo img {
  filter: grayscale(0);
  transform: scale(1.03);
}
.leader-card-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(34, 34, 34, 1) 100%);
}
.leader-card-body {
  padding: 32px 32px 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.leader-role {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}
.leader-name {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.leader-dept {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.leader-bio {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 20px;
}
.leader-links {
  display: flex;
  gap: 10px;
}
.leader-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(var(--cyan-rgb), 0.3);
  padding-bottom: 2px;
}
.team-section {
  padding: 60px 40px;
}
.team-section-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.dept-group {
  margin-bottom: 56px;
}
.dept-group-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--black);
}
.dept-group-name {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.dept-group-count {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cyan);
  background: rgba(var(--cyan-rgb), 0.08);
  padding: 3px 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.dept-group-tag {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.member-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.member-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  cursor: pointer;
  transition:
    border-color 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  overflow: hidden;
}
.member-card:hover {
  border-color: var(--cyan);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(var(--cyan-rgb), 0.1);
}
.member-card-photo {
  position: relative;
  /* aspect-ratio removed */
  overflow: hidden;
  background: var(--gray);
}
.member-card-photo img {
  width: 100%;
  height: auto; /* let it scale naturally */
  object-fit: contain;
  display: block;
  transition: transform 0.3s;
}
.member-card:hover .member-card-photo img {
  transform: scale(1.05);
}
.member-card-initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.3);
  background: var(--black);
}
.member-card-dept-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.member-card-body {
  padding: 16px;
}
.member-card-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 3px;
  line-height: 1.2;
}
.member-card-role {
  font-size: 0.72rem;
  color: var(--cyan);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.member-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.member-card-year {
  font-size: 0.65rem;
  color: var(--muted);
  font-weight: 500;
}
.member-card-major {
  font-size: 0.65rem;
  color: var(--muted);
  font-weight: 400;
}
.member-card-major::before {
  content: "·";
  margin-right: 4px;
}
/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: #fff;
  max-width: 760px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.25s;
}
.modal-overlay.open .modal {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: var(--black);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.modal-header {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 260px;
}
.modal-photo {
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.modal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  min-height: 260px;
}
.modal-header-info {
  background: var(--black);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.modal-dept-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--black);
  background: var(--cyan);
  padding: 3px 10px;
  margin-bottom: 12px;
  align-self: flex-start;
}
.modal-name {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.modal-role {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.modal-social {
  display: flex;
  gap: 10px;
}
.modal-social a {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--cyan);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(var(--cyan-rgb), 0.3);
  padding-bottom: 2px;
}
.modal-body {
  padding: 32px;
}
.modal-section {
  margin-bottom: 28px;
}
.modal-section-label {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cyan);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.modal-section-label::before {
  content: "";
  width: 14px;
  height: 2px;
  background: var(--cyan);
}
.modal-section-text {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
}
.modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.modal-tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  background: var(--gray);
  color: var(--black);
}
.modal-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.modal-info-key {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 3px;
}
.modal-info-val {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
}

/* ============================================================
   PARTNERS PAGE
   ============================================================ */
.partners-section {
  padding: 60px 40px;
}
.partners-section-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.partner-flip {
  height: 220px;
  perspective: 1000px;
  cursor: pointer;
}
.partner-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.partner-flip:hover .partner-flip-inner {
  transform: rotateY(180deg);
}
.partner-flip-front,
.partner-flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.partner-flip-front {
  background: #fff;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  transition: border-color 0.2s;
}
.partner-flip:hover .partner-flip-front {
  border-color: var(--cyan);
}
.partner-logo-img {
  max-width: 160px;
  max-height: 80px;
  object-fit: contain;
}
.partner-flip-front-logo {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.1;
}
.partner-flip-front-logo span {
  color: var(--cyan);
}
.partner-flip-back {
  background: var(--black);
  transform: rotateY(180deg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.partner-flip-back-name {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.partner-flip-back-desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  font-weight: 300;
  flex: 1;
  margin-bottom: 12px;
}
.partner-flip-back-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.partner-flip-back-since {
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.partner-flip-back-link {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--cyan);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(var(--cyan-rgb), 0.3);
  padding-bottom: 1px;
}
.partner-cta {
  background: var(--black);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}
.partner-cta::before {
  content: "PARTNER";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 12rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.02);
  text-transform: uppercase;
  pointer-events: none;
}
.partner-cta-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.partner-cta-tag {
  font-size: 10px;
  font-weight: 800;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.partner-cta-tag::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--cyan);
}
.partner-cta-title {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.partner-cta-title span {
  color: var(--cyan);
}
.partner-cta-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
  font-weight: 300;
  max-width: 480px;
}
.partner-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

/* ============================================================
   COMMANDITAIRES PAGE
   ============================================================ */
.sponsors-section {
  padding: 60px 40px;
}
.sponsors-section-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.tier-group {
  margin-bottom: 52px;
}
.tier-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--black);
}
.tier-name {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
}
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sponsor-card {
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition:
    border-color 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  cursor: pointer;
}
.sponsor-card:hover {
  border-color: var(--cyan);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(var(--cyan-rgb), 0.1);
}
.sponsor-logo {
  background: var(--gray);
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.sponsor-logo-text {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--black);
  text-transform: uppercase;
  text-align: center;
}
.sponsor-body {
  padding: 16px;
}
.sponsor-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}
.sponsor-contrib {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 8px;
}
.sponsor-since {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.sponsor-cta {
  background: var(--black);
  padding: 72px 40px;
  position: relative;
  overflow: hidden;
}
.sponsor-cta-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.cta-title {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 16px;
}
.cta-title span {
  color: var(--cyan);
}
.cta-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
  font-weight: 300;
  max-width: 480px;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

/* ============================================================
   PODCAST PAGE
   ============================================================ */
.podcast-hero {
  background: var(--black);
  padding: 220px 40px 80px; /* Augmenté pour la nav absolue */
  position: relative;
  overflow: hidden;
}
.podcast-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 80% 50%,
    rgba(var(--cyan-rgb), 0.08) 0%,
    transparent 60%
  );
}
.podcast-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--cyan) 20%,
    transparent 25%,
    var(--cyan) 35%,
    transparent 40%,
    var(--cyan) 55%,
    transparent 60%,
    var(--cyan) 70%,
    transparent 75%,
    var(--cyan) 85%,
    transparent 100%
  );
  opacity: 0.3;
}
.podcast-hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}
.podcast-hero-tag {
  font-size: 10px;
  font-weight: 800;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.podcast-hero-tag::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--cyan);
}
.podcast-hero-title {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.podcast-hero-title span {
  color: var(--cyan);
}
.podcast-hero-desc {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
  font-weight: 300;
  max-width: 460px;
  margin-bottom: 32px;
}
.podcast-hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-platform {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.btn-platform:hover {
  opacity: 0.85;
}
.btn-spotify {
  background: #1db954;
  color: #fff;
}
.btn-youtube {
  background: #ff0000;
  color: #fff;
}
.btn-apple {
  background: #9933cc;
  color: #fff;
}
.btn-platform--pill {
  border-radius: 50px;
  background: #fff;
  color: var(--black);
  padding: 0.65rem 1.5rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.btn-platform--pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  opacity: 1;
}
.btn-platform--pill.btn-spotify { color: #1db954; }
.btn-platform--pill.btn-youtube { color: #ff0000; }
.btn-platform--pill.btn-apple { color: #9933cc; }

/* Model 3: Verre (Glass) */
.btn-platform--glass {
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 0.65rem 1.5rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(43, 184, 220, 0.3); /* Cyan border */
}
.btn-platform--glass:hover {
  background: rgba(43, 184, 220, 0.1);
  border-color: var(--cyan);
  opacity: 1;
}

/* Model 4: Minimaliste (Texte seulement) */
.btn-platform--minimal {
  background: transparent;
  color: #fff;
  padding: 0.5rem 0.5rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  position: relative;
}
.btn-platform--minimal::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: width 0.3s;
}
.btn-platform--minimal:hover {
  opacity: 1;
}
.btn-platform--minimal:hover::after {
  width: 100%;
}

/* ── Boutons Réseaux Sociaux JHMA ── */
.jhma-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 20px 10px 14px;
  border-radius: 999px;
  transition: filter 0.18s, transform 0.15s;
  border: none;
  white-space: nowrap;
  font-family: 'Fira Sans', sans-serif;
}
.jhma-social-btn:hover { filter: brightness(1.15); transform: translateY(-1px); }
.jhma-social-btn svg { flex-shrink: 0; }

/* Style A — Plein */
.jhma-btn-style-a.jhma-btn-spotify   { background: #1DB954; color: #000; }
.jhma-btn-style-a.jhma-btn-youtube   { background: #FF0000; color: #fff; }
.jhma-btn-style-a.jhma-btn-apple     { background: #9933CC; color: #fff; }
.jhma-btn-style-a.jhma-btn-linkedin  { background: #0A66C2; color: #fff; }
.jhma-btn-style-a.jhma-btn-instagram { background: #C13584; color: #fff; }
.jhma-btn-style-a.jhma-btn-facebook  { background: #1877F2; color: #fff; }
.jhma-btn-style-a.jhma-btn-x         { background: #000; color: #fff; border: 1px solid #333; }

/* Style B — Outline */
.jhma-btn-style-b.jhma-btn-spotify   { background: transparent; color: #1DB954; border: 1.5px solid #1DB954; }
.jhma-btn-style-b.jhma-btn-youtube   { background: transparent; color: #FF0000; border: 1.5px solid #FF0000; }
.jhma-btn-style-b.jhma-btn-apple     { background: transparent; color: #9933CC; border: 1.5px solid #9933CC; }
.jhma-btn-style-b.jhma-btn-linkedin  { background: transparent; color: #0A66C2; border: 1.5px solid #0A66C2; }
.jhma-btn-style-b.jhma-btn-instagram { background: transparent; color: #C13584; border: 1.5px solid #C13584; }
.jhma-btn-style-b.jhma-btn-facebook  { background: transparent; color: #1877F2; border: 1.5px solid #1877F2; }
.jhma-btn-style-b.jhma-btn-x         { background: transparent; color: #aaa; border: 1.5px solid #555; }

/* Style C — Sombre JHMA (footer) */
.jhma-btn-style-c {
  background: #1a1a1a;
  color: #ccc;
  border: 1px solid #2a2a2a;
}
.jhma-btn-style-c:hover {
  border-color: #2BB8DC;
  color: #2BB8DC;
  filter: none;
}
.jhma-btn-style-c.jhma-btn-spotify svg   { fill: #1DB954; }
.jhma-btn-style-c.jhma-btn-youtube svg   { fill: #FF4444; }
.jhma-btn-style-c.jhma-btn-apple svg     { fill: #9933CC; }
.jhma-btn-style-c.jhma-btn-linkedin svg  { fill: #0A66C2; }
.jhma-btn-style-c.jhma-btn-instagram svg { fill: #C13584; }
.jhma-btn-style-c.jhma-btn-facebook svg  { fill: #1877F2; }
.jhma-btn-style-c.jhma-btn-x svg         { fill: #aaa; }

/* Groupe de boutons */
.jhma-social-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

@media (max-width: 600px) {
  .jhma-social-group { gap: 10px; }
  .jhma-social-btn   { font-size: 0.75rem; padding: 9px 16px 9px 12px; }
}

/* ── Boutons Généraux JHMA (12 Modèles) ── */
.btn-general {
  display: inline-flex; align-items: center; justify-content: center; text-align: center; gap: 7px;
  font-size: 0.83rem; font-weight: 600;
  text-decoration: none; cursor: pointer;
  transition: all 0.18s; padding: 10px 22px;
  white-space: nowrap; font-family: 'Inter', 'Fira Sans', sans-serif;
}

/* 1 — Pill cyan plein */
.btn-general.btn-model-1 { background: #2BB8DC; color: #0a1519; border-radius: 999px; border: none; }
.btn-general.btn-model-1:hover { background: #1e96b8; }

/* 2 — Pill outline cyan */
.btn-general.btn-model-2 { background: transparent; color: #2BB8DC; border: 1.5px solid #2BB8DC; border-radius: 999px; }
.btn-general.btn-model-2:hover { background: #2BB8DC; color: #111; }

/* 3 — Pill fond sombre bordure blanche douce */
.btn-general.btn-model-3 { background: #1e1e1e; color: #e0e0e0; border: 1px solid #333; border-radius: 999px; }
.btn-general.btn-model-3:hover { border-color: #2BB8DC; color: #2BB8DC; }

/* 4 — Pill avec flèche → */
.btn-general.btn-model-4 { background: #2BB8DC; color: #0a1519; border-radius: 999px; padding-right: 16px; border: none; font-weight: 700; }
.btn-general.btn-model-4 .arrow { width: 22px; height: 22px; background: rgba(0,0,0,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; flex-shrink: 0; }
.btn-general.btn-model-4:hover { background: #1e96b8; }

/* 5 — Pill glassmorphism */
.btn-general.btn-model-5 { background: rgba(43,184,220,0.12); color: #2BB8DC; border: 1px solid rgba(43,184,220,0.35); border-radius: 999px; backdrop-filter: blur(8px); }
.btn-general.btn-model-5:hover { background: rgba(43,184,220,0.22); }

/* 6 — Pill avec point pulsant */
.btn-general.btn-model-6 { background: #1a1a1a; color: #e0e0e0; border: 1px solid #2e2e2e; border-radius: 999px; gap: 8px; }
.btn-general.btn-model-6 .dot { width: 7px; height: 7px; background: #2BB8DC; border-radius: 50%; animation: jhma-pulse 2s infinite; flex-shrink: 0; }
@keyframes jhma-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.8)} }
.btn-general.btn-model-6:hover { border-color: #2BB8DC; color: #2BB8DC; }

/* 7 — Pill split : texte + icône séparé */
.btn-general.btn-model-7 { background: #2BB8DC; color: #0a1519; border-radius: 999px; padding: 0; overflow: hidden; border: none; }
.btn-general.btn-model-7 .b7-txt { padding: 10px 18px; font-size: 0.83rem; font-weight: 700; display: inline-block; }
.btn-general.btn-model-7 .b7-icon { background: rgba(0,0,0,0.18); padding: 10px 14px; display: inline-flex; align-items: center; justify-content: center; font-size: 0.85rem; height: 100%; }
.btn-general.btn-model-7:hover .b7-icon { background: rgba(0,0,0,0.28); }

/* 8 — Pill outline blanc */
.btn-general.btn-model-8 { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.2); border-radius: 999px; }
.btn-general.btn-model-8:hover { border-color: #fff; color: #fff; }

/* 9 — Pill avec badge count */
.btn-general.btn-model-9 { background: #1e1e1e; color: #e0e0e0; border: 1px solid #2e2e2e; border-radius: 999px; gap: 8px; }
.btn-general.btn-model-9 .badge { background: #2BB8DC; color: #0a1519; font-size: 0.68rem; font-weight: 800; padding: 1px 8px; border-radius: 999px; }
.btn-general.btn-model-9:hover { border-color: #2BB8DC; }

/* 10 — Pill gradient subtle */
.btn-general.btn-model-10 { background: linear-gradient(90deg, #1e96b8, #2BB8DC); color: #0a1519; border-radius: 999px; border: none; font-weight: 700; }
.btn-general.btn-model-10:hover { background: linear-gradient(90deg, #1a85a5, #1e96b8); }

/* 11 — Pill underscore actif */
.btn-general.btn-model-11 { background: transparent; color: #2BB8DC; border-radius: 999px; border: none; position: relative; padding-bottom: 12px; }
.btn-general.btn-model-11::after { content:''; position:absolute; bottom:6px; left:22px; right:22px; height:1.5px; background:#2BB8DC; border-radius:2px; }
.btn-general.btn-model-11:hover { color: #fff; }
.btn-general.btn-model-11:hover::after { background: #fff; }

/* 12 — Pill noir + bordure + inner glow */
.btn-general.btn-model-12 { background: #0a0a0a; color: #2BB8DC; border: 1px solid #2BB8DC; border-radius: 999px; box-shadow: inset 0 0 12px rgba(43,184,220,0.08); }
.btn-general.btn-model-12:hover { box-shadow: inset 0 0 20px rgba(43,184,220,0.18); color: #fff; }

/* 13 — Pill outline blanc pur (Fonds colorés) */
.btn-general.btn-model-13 { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.5); border-radius: 999px; }
.btn-general.btn-model-13:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* 14 — Ghost texte clair (Fonds colorés) */
.btn-general.btn-model-14 { background: transparent; color: #fff !important; border: none; font-weight: 800; padding-left: 14px; padding-right: 14px; }
.btn-general.btn-model-14:hover { color: rgba(255,255,255,0.7) !important; }

/* 15 — Pill blanc plein (Fonds colorés) */
.btn-general.btn-model-15 { background: #fff; color: #2BB8DC; border: none; border-radius: 999px; }
.btn-general.btn-model-15:hover { background: #f8f8f8; color: #1e96b8; }

.podcast-cover-art {
  background: #222;
  padding: 28px 20px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(var(--cyan-rgb), 0.15);
}
.podcast-cover-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--cyan);
  color: var(--black);
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
}
.podcast-cover-title {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.podcast-cover-sub {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.podcast-stats {
  display: flex;
  gap: 24px;
  margin-top: 16px;
}
.podcast-stat-val {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
}
.podcast-stat-label {
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.featured-ep {
  background: var(--cyan);
}
.featured-ep-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  min-height: 280px;
}
.featured-ep-body {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-ep-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--black);
  background: rgba(0, 0, 0, 0.1);
  padding: 4px 10px;
  margin-bottom: 16px;
  align-self: flex-start;
}
.featured-ep-number {
  font-size: 0.78rem;
  font-weight: 800;
  color: rgba(var(--black-rgb), 0.5);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.featured-ep-title {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--black);
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.featured-ep-desc {
  font-size: 0.85rem;
  color: rgba(var(--black-rgb), 0.6);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 20px;
}
.featured-ep-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.featured-ep-duration {
  font-size: 0.72rem;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.1);
  padding: 3px 10px;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.featured-ep-thumb {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.featured-ep-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.6;
}
.featured-ep-thumb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-btn {
  width: 64px;
  height: 64px;
  background: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
  text-decoration: none;
}
.play-btn:hover {
  transform: scale(1.1);
}
.play-btn svg {
  width: 24px;
  height: 24px;
  margin-left: 3px;
}
.episodes-section {
  padding: 60px 40px;
}
.episodes-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.season-tabs {
  display: flex;
  gap: 4px;
}
.season-tab {
  padding: 8px 16px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1.5px solid #e5e7eb;
  background: none;
  cursor: pointer;
  color: var(--muted);
  transition: all 0.15s;
}
.season-tab.active,
.season-tab:hover {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}
.episodes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ep-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  transition:
    border-color 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  cursor: pointer;
}
.ep-card:hover {
  border-color: var(--cyan);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(var(--cyan-rgb), 0.1);
}
.ep-card-thumb {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: var(--black);
}
.ep-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.6;
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.ep-card:hover .ep-card-thumb img {
  opacity: 0.8;
  transform: scale(1.04);
}
.ep-card-thumb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.ep-card:hover .ep-card-thumb-overlay {
  opacity: 1;
}
.ep-card-thumb-overlay .play-btn {
  width: 48px;
  height: 48px;
}
.ep-number-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--cyan);
  color: var(--black);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 8px;
}
.ep-season-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.6);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
}
.ep-card-body {
  padding: 20px;
}
.ep-card-hosts {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.ep-card-title {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 8px;
}
.ep-card-title a {
  color: inherit;
  text-decoration: none;
}
.ep-card-title a:hover {
  color: var(--cyan);
}
.ep-card-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 12px;
}
.ep-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}
.ep-card-duration {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ep-card-links {
  display: flex;
  gap: 8px;
}
.ep-link {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-decoration: none;
  padding: 3px 8px;
  border: 1px solid #e5e7eb;
  transition: all 0.15s;
}
.ep-link:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}
.spotify-section {
  background: var(--gray);
  padding: 56px 40px;
}
.spotify-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ============================================================
   NEWSLETTERS PAGE
   ============================================================ */
.subscribe-band {
  background: var(--cyan);
  padding: 32px 40px;
}
.subscribe-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.subscribe-label {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(var(--black-rgb), 0.5);
  margin-bottom: 4px;
}
.subscribe-title {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--black);
}
.subscribe-form {
  display: flex;
  gap: 0;
}
.subscribe-input {
  padding: 12px 18px;
  border: none;
  font-size: 0.85rem;
  font-family: "Fira Sans", sans-serif;
  color: var(--black);
  background: #fff;
  width: 280px;
  outline: none;
}
.latest-issue {
  padding: 60px 40px 0;
}
.latest-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.issue-feature {
  display: grid;
  grid-template-columns: 280px 1fr;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  margin-bottom: 60px;
  transition: border-color 0.2s;
}
.issue-feature:hover {
  border-color: var(--cyan);
}
.issue-feature-cover {
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 28px;
  position: relative;
  min-height: 300px;
}
.issue-cover-art {
  width: 100%;
  background: #222;
  padding: 28px 20px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(var(--cyan-rgb), 0.15);
}
.issue-new-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--cyan);
  color: var(--black);
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
}
.issue-cover-volume {
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.issue-cover-title {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}
.issue-cover-edition {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.issue-feature-body {
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.issue-feature-vol {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}
.issue-feature-title {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.issue-feature-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 24px;
  max-width: 480px;
}
.issue-feature-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.issue-date {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.7rem 1.4rem;
  background: var(--black);
  color: #fff;
  text-decoration: none;
  transition: background 0.15s;
}
.btn-download:hover {
  background: var(--cyan);
  color: var(--black);
}
.archive-section {
  padding: 0 40px 60px;
}
.archive-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.archive-year-group {
  margin-bottom: 48px;
}
.archive-year-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--black);
}
.archive-year-label {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
}
.archive-year-count {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--cyan);
  background: rgba(var(--cyan-rgb), 0.08);
  padding: 3px 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.archive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.issue-card {
  border: 1px solid #e5e7eb;
  overflow: hidden;
  cursor: pointer;
  transition:
    border-color 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.issue-card:hover {
  border-color: var(--cyan);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(var(--cyan-rgb), 0.1);
}
.issue-card-cover {
  background: var(--black);
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
}
.issue-card-cover-vol {
  font-size: 0.55rem;
  font-weight: 800;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.issue-card-cover-title {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.issue-card-body {
  padding: 14px;
}
.issue-card-edition {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}
.issue-card-desc {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 300;
  margin-bottom: 10px;
}
.issue-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.issue-card-date {
  font-size: 0.62rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.btn-dl-sm {
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  background: var(--black);
  color: #fff;
  text-decoration: none;
  transition: background 0.15s;
}
.btn-dl-sm:hover {
  background: var(--cyan);
  color: var(--black);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  position: relative;
  min-height: 560px;
  background: var(--black);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(var(--black-rgb), 0.2) 0%,
    rgba(var(--black-rgb), 0.95) 85%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px 64px;
  width: 100%;
}
.tag {
  font-size: 10px;
  font-weight: 800;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.tag::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--cyan);
}
.hero-content h1 {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.hero-content h1 span {
  color: var(--cyan);
}
.hero-lead {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  max-width: 520px;
  line-height: 1.8;
}
.stats-band {
  background: var(--cyan);
  padding: 0;
}
.stats-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 28px 32px;
  border-right: 1px solid rgba(var(--black-rgb), 0.1);
  text-align: center;
}
.stat-item:last-child {
  border-right: none;
}
.stat-val {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.65rem;
  font-weight: 800;
  color: rgba(var(--black-rgb), 0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.mission {
  padding: 80px 40px;
  background: #fff;
}
.mission-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mission h2 {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.body-text p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 16px;
}
.mission-visual {
  background: var(--black);
  position: relative;
  min-height: 360px;
  overflow: hidden;
}
.mission-visual-text {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  z-index: 1;
}
.mission-quote {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.02em;
}
.mission-quote span {
  color: var(--cyan);
}
.values {
  padding: 80px 40px;
  background: var(--black);
}
.values-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.values h2 {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 40px;
}
.value-card {
  background: #222;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.value-card:hover {
  background: #252525;
}
.value-num {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: rgba(var(--cyan-rgb), 0.08);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.value-card:hover .value-num {
  color: rgba(var(--cyan-rgb), 0.15);
}
.value-name {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 8px;
}
.value-title {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 12px;
}
.value-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.75;
  font-weight: 300;
}
.value-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--cyan);
  transition: width 0.35s;
}
.value-card:hover .value-line {
  width: 100%;
}
.history {
  padding: 80px 40px;
  background: var(--gray);
}
.history-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.history h2 {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 40px;
}
.timeline {
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 120px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e5e7eb;
}
.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  margin-bottom: 32px;
  position: relative;
}
.timeline-year {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--cyan);
  text-align: right;
  padding-right: 20px;
  line-height: 1;
  padding-top: 4px;
}
.timeline-body {
  background: #fff;
  padding: 20px 24px;
  border: 1px solid #e5e7eb;
  position: relative;
  transition: border-color 0.2s;
}
.timeline-body::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 14px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  border: 2px solid #fff;
}
.timeline-body:hover {
  border-color: var(--cyan);
}
.timeline-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}
.timeline-desc {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-content {
  padding: 60px 40px;
}
.contact-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}
.form-title {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 8px;
}
.form-sub {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 32px;
}
.form-success {
  background: #dcfce7;
  border: 1px solid #86efac;
  padding: 14px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #15803d;
  margin-bottom: 24px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field--full {
  grid-column: span 2;
}
.form-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--black);
}
.form-input,
.form-textarea,
.form-select {
  padding: 11px 14px;
  border: 1.5px solid #e5e7eb;
  font-size: 0.88rem;
  font-family: "Fira Sans", sans-serif;
  color: var(--black);
  background: #fff;
  outline: none;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(var(--cyan-rgb), 0.12);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.form-select {
  cursor: pointer;
}
.form-note {
  font-size: 0.68rem;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}
.info-block {
  margin-bottom: 28px;
}
.info-block-title {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-block-title::after {
  content: "";
  flex: 1;
  height: 2px;
  background: #e5e7eb;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
}
.contact-item:last-child {
  border-bottom: none;
}
.contact-item-icon {
  width: 36px;
  height: 36px;
  background: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--cyan);
}
.contact-item-label {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
}
.contact-item-val {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.3;
}
.contact-item-val a {
  color: var(--black);
  text-decoration: none;
}
.contact-item-val a:hover {
  color: var(--cyan);
}
.social-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 14px;
  border: 1.5px solid #e5e7eb;
  color: var(--black);
  text-decoration: none;
  transition: all 0.15s;
}
.social-link:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}
.office-card {
  background: var(--black);
  padding: 28px;
}
.office-card-title {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}
.office-address {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 16px;
}
.office-hours {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 400;
}
.office-hours strong {
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   404 PAGE
   ============================================================ */
.jhma-404 {
  min-height: 80vh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
}
.error-404-wrap {
  max-width: 560px;
  position: relative;
  z-index: 1;
}
.error-num {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: clamp(6rem, 15vw, 10rem);
  font-weight: 800;
  color: var(--cyan);
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  display: block;
  opacity: 0.2;
}
.error-line {
  width: 60px;
  height: 3px;
  background: var(--cyan);
  margin: 0 auto 24px;
}
.error-title {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.error-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 36px;
}
.error-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn-home {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.85rem 1.8rem;
  background: var(--cyan);
  color: var(--black);
  text-decoration: none;
  border-radius: 999px;
  transition: opacity 0.15s;
}
.btn-home:hover {
  opacity: 0.85;
}
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.85rem 1.8rem;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.15s;
}
.btn-back:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}
.quick-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.quick-links-label {
  width: 100%;
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}
.quick-link {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 16px;
  transition: color 0.15s;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.quick-link:last-child {
  border-right: none;
}
.quick-link:hover {
  color: var(--cyan);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .archive-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .page-header-inner--split,
  .contact-inner,
  .mission-inner,
  .stats-inner {
    grid-template-columns: 1fr;
  }
  .events-grid {
    grid-template-columns: 1fr;
  }
  .event-card--featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .event-card--featured .event-card-img {
    min-height: 200px;
  }
  .event-content-inner {
    grid-template-columns: 1fr;
  }
  .event-sidebar {
    position: static;
  }
  .leadership-grid {
    grid-template-columns: 1fr;
  }
  .leader-card {
    grid-template-columns: 160px 1fr;
  }
  .member-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .partners-grid,
  .sponsors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .partner-cta-inner,
  .sponsor-cta-inner {
    grid-template-columns: 1fr;
  }
  .podcast-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .featured-ep-inner {
    grid-template-columns: 1fr;
  }
  .featured-ep-thumb {
    min-height: 200px;
  }
  .episodes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .spotify-inner {
    grid-template-columns: 1fr;
  }
  .modal-header {
    grid-template-columns: 1fr;
  }
  .modal-photo img {
    min-height: 200px;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .related-grid {
    grid-template-columns: 1fr 1fr;
  }
  .issue-feature {
    grid-template-columns: 1fr;
  }
  .archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline::before {
    left: 60px;
  }
  .timeline-item {
    grid-template-columns: 60px 1fr;
    gap: 20px;
  }
  .timeline-year {
    font-size: 1rem;
  }
  .past-event-row {
    grid-template-columns: 60px 1fr auto;
  }
}
@media (max-width: 640px) {
  .page-header,
  .events-section,
  .past-section,
  .events-cta,
  .team-section,
  .leadership,
  .partners-section,
  .partner-cta,
  .sponsors-section,
  .sponsor-cta,
  .podcast-hero,
  .episodes-section,
  .spotify-section,
  .latest-issue,
  .archive-section,
  .subscribe-band,
  .contact-content,
  .mission,
  .values,
  .history,
  .related-section,
  .event-content,
  .jhma-404 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .filters-bar,
  .dept-filters,
  .type-filters,
  .info-bar {
    padding: 0 20px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-field--full {
    grid-column: span 1;
  }
  .form-label {
    font-size: 14px;
  }
  .btn-submit {
    width: 100%;
    text-align: center;
  }
  .member-grid {
    grid-template-columns: 1fr 1fr;
  }
  .partners-grid,
  .sponsors-grid {
    grid-template-columns: 1fr 1fr;
  }
  .episodes-grid {
    grid-template-columns: 1fr;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
  .archive-grid {
    grid-template-columns: 1fr 1fr;
  }
  .modal-info-grid {
    grid-template-columns: 1fr;
  }
  .hero-content h1 {
    font-size: 3rem;
  }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ============================================================
   JHMA — Pagination
   ============================================================ */
.jhma-pagination {
  padding: 48px 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.jhma-pagination-inner {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}
.jhma-page-item a,
.jhma-page-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #6b7280;
  text-decoration: none;
  border: 1.5px solid #e5e7eb;
  transition: all 0.15s;
  font-family: "Fira Sans", sans-serif;
}
.jhma-page-item a:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}
.jhma-page-item.current span {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--black);
  font-weight: 800;
}
.jhma-page-item.dots span {
  border-color: transparent;
  color: #9ca3af;
  min-width: 24px;
}
.jhma-pagination-info {
  font-size: 0.7rem;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media (max-width: 640px) {
  .jhma-pagination {
    padding-left: 20px;
    padding-right: 20px;
  }
}
/* ============================================================
   JHMA — Feedback formulaires (succès, erreurs, liste d'attente)
   Ajouter dans assets/css/components.css
   ============================================================ */
.register-success {
  background: #dcfce7;
  border-left: 3px solid #16a34a;
  padding: 12px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #15803d;
  margin-bottom: 16px;
  line-height: 1.5;
}
.register-error {
  background: #fef2f2;
  border-left: 3px solid #ef4444;
  padding: 12px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #dc2626;
  margin-bottom: 16px;
  line-height: 1.5;
}
.register-info {
  background: #fef9c3;
  border-left: 3px solid #f59e0b;
  padding: 12px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #92400e;
  margin-bottom: 16px;
  line-height: 1.5;
}
.register-info--green {
  background: #f0fdf4;
  border-left-color: #16a34a;
  color: #15803d;
}
/* ============================================================
   JHMA — Blocs Surprises CSS
   Ajouter dans assets/css/components.css
   ============================================================ */
:root {
  --black: #1a1a1a;
  --cyan: var(--cyan);
}

/* ANNONCE */
.jhma-announcement {
  padding: 11px 40px;
  position: relative;
}
.jhma-announcement-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-right: 40px;
}
.jhma-announcement-text {
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}
.jhma-announcement-link {
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1.5px solid;
  padding-bottom: 1px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: opacity 0.15s;
}
.jhma-announcement-link:hover {
  opacity: 0.75;
}
.jhma-announcement-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  padding: 4px 8px;
  opacity: 0.6;
  transition: opacity 0.15s;
}
.jhma-announcement-close:hover {
  opacity: 1;
}

/* LIVE SOCIAL */
.jhma-live-bar {
  display: block;
  text-decoration: none;
  padding: 10px 40px;
  transition: opacity 0.15s;
}
.jhma-live-bar:hover {
  opacity: 0.9;
}
.jhma-live-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.jhma-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: livepulse 1.2s infinite;
}
@keyframes livepulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}
.jhma-live-badge {
  font-size: 0.65rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: rgba(0, 0, 0, 0.2);
  padding: 2px 8px;
  border-radius: 2px;
}
.jhma-live-text {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
}
.jhma-live-arrow {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* COMPTE À REBOURS */
.jhma-countdown {
  background: var(--black);
  padding: 20px 40px;
  border-bottom: 3px solid var(--cyan);
}
.jhma-countdown-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.jhma-countdown-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.jhma-countdown-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.jhma-countdown-timer {
  display: flex;
  align-items: center;
  gap: 8px;
}
.jhma-cd-unit {
  text-align: center;
  min-width: 52px;
}
.jhma-cd-val {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  display: block;
}
.jhma-cd-lbl {
  font-size: 0.55rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
}
.jhma-cd-sep {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 16px;
}
.jhma-countdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.75rem 1.6rem;
  background: var(--cyan);
  color: var(--black);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.jhma-countdown-btn:hover {
  opacity: 0.85;
}

/* JAUGE DE PLACES */
.jhma-jauge {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 14px 40px;
}
.jhma-jauge-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.jhma-jauge-text {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.jhma-jauge-event {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.jhma-jauge-count {
  font-size: 0.78rem;
  color: #6b7280;
  font-weight: 400;
}
.jhma-jauge-count strong {
  font-weight: 800;
  color: var(--black);
}
.jhma-jauge-urgence {
  font-size: 0.72rem;
  font-weight: 800;
  color: #ef4444;
  margin-left: 4px;
}
.jhma-jauge-bar-wrap {
  height: 6px;
  background: #f0f0f0;
  border-radius: 3px;
  margin-bottom: 8px;
}
.jhma-jauge-bar {
  height: 100%;
  border-radius: 3px;
  transition: width 0.6s ease;
}
.jhma-jauge-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.jhma-jauge-restantes {
  font-size: 0.72rem;
  font-weight: 700;
}
.jhma-jauge-btn {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  background: var(--black);
  color: #fff;
  text-decoration: none;
  transition: background 0.15s;
}
.jhma-jauge-btn:hover {
  background: var(--cyan);
  color: var(--black);
}

/* SAISONNIER */
.jhma-saisonnier {
  background: #f8f4ff;
  border-left: 4px solid #7c3aed;
  padding: 16px 40px;
}
.jhma-saisonnier--rentrée {
  background: #f0fdf4;
  border-left-color: #16a34a;
}
.jhma-saisonnier--recrutement {
  background: #fff7ed;
  border-left-color: #ea580c;
}
.jhma-saisonnier--vacances {
  background: #fef3c7;
  border-left-color: #d97706;
}
.jhma-saisonnier--transition {
  background: #f0f9ff;
  border-left-color: var(--cyan);
}
.jhma-saisonnier-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.jhma-saisonnier-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.jhma-saisonnier-text {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.jhma-saisonnier-titre {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--black);
}
.jhma-saisonnier-desc {
  font-size: 0.82rem;
  color: #4b5563;
  font-weight: 400;
}
.jhma-saisonnier-btn {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  background: var(--black);
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.15s;
}
.jhma-saisonnier-btn:hover {
  opacity: 0.85;
}

/* POPUP */
.jhma-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.jhma-popup-modal {
  background: #fff;
  max-width: 520px;
  width: 100%;
  position: relative;
  overflow: hidden;
  animation: popupIn 0.3s ease;
}
@keyframes popupIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.jhma-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: var(--black);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.jhma-popup-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.jhma-popup-body {
  padding: 32px;
}
.jhma-popup-titre {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--black);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 12px;
}
.jhma-popup-texte {
  font-size: 0.88rem;
  color: #6b7280;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 24px;
}
.jhma-popup-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.jhma-popup-btn-primary {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.8rem 1.6rem;
  background: var(--cyan);
  color: var(--black);
  text-decoration: none;
  transition: opacity 0.15s;
}
.jhma-popup-btn-primary:hover {
  opacity: 0.85;
}
.jhma-popup-btn-secondary {
  font-size: 0.72rem;
  font-weight: 600;
  color: #9ca3af;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Fira Sans", sans-serif;
  text-decoration: underline;
  padding: 8px;
}
.jhma-popup-btn-secondary:hover {
  color: var(--black);
}

/* MAINTENANCE */
.jhma-maintenance {
  background: #fef9c3;
  border-bottom: 2px solid #fde047;
  padding: 16px 40px;
}
.jhma-maintenance-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.jhma-maintenance-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.jhma-maintenance-texte {
  font-size: 0.85rem;
  font-weight: 600;
  color: #854d0e;
}
.jhma-maintenance-retour {
  font-size: 0.75rem;
  color: #92400e;
  margin-top: 3px;
}

/* LOI 25 / COOKIES */
.jhma-cookies {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--black);
  border-top: 3px solid var(--cyan);
  padding: 16px 40px;
}
.jhma-cookies--bottom {
  bottom: 0;
}
.jhma-cookies--top {
  top: 0;
  border-top: none;
  border-bottom: 3px solid var(--cyan);
}
.jhma-cookies-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.jhma-cookies-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  font-weight: 300;
  flex: 1;
}
.jhma-cookies-link {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 600;
}
.jhma-cookies-link:hover {
  text-decoration: underline;
}
.jhma-cookies-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.jhma-cookies-btn {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 16px;
  border: none;
  cursor: pointer;
  font-family: "Fira Sans", sans-serif;
  transition: opacity 0.15s;
}
.jhma-cookies-btn:hover {
  opacity: 0.85;
}
.jhma-cookies-btn--accept {
  background: var(--cyan);
  color: var(--black);
}
.jhma-cookies-btn--refuse {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* RESPONSIVE */
@media (max-width: 640px) {
  .jhma-announcement,
  .jhma-live-bar,
  .jhma-countdown,
  .jhma-jauge,
  .jhma-saisonnier,
  .jhma-maintenance,
  .jhma-cookies {
    padding-left: 20px;
    padding-right: 20px;
  }
  .jhma-announcement-inner {
    padding-right: 32px;
  }
  .jhma-countdown-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .jhma-cd-val {
    font-size: 1.8rem;
  }
}

/* ============================================================
   JHMA — Palettes & Typographies
   Les valeurs sont injectées via PHP en CSS Custom Properties
   Ce fichier garantit que --cyan, --black, --font-body
   sont appliqués partout, même aux éléments codés en dur.
   ============================================================ */

/* Re-map de toutes les utilisations hardcodées de var(--cyan) et var(--black)
   vers les CSS custom properties dynamiques */

/* Cyan — accent */
.tag::before,
.section-tag::before,
.ph-tag::before,
.content-section-label::before,
.mvv-tag::before,
.mvv-card-label,
.mvv-s3-card-label,
.mvv--s1 .mvv-card-label,
.mvv--s2 .mvv-card-label,
.event-card-type,
.event-hero-type,
.event-card-date-badge,
.btn-register--cyan,
.btn-cyan,
.jhma-countdown,
.jhma-countdown-btn,
.subscribe-btn,
.issue-feature-vol,
.ep-number-badge,
.ep-card-hosts,
.leader-role,
.member-card-role,
.section-tag,
.tag,
.ph-tag {
  color: var(--cyan);
}

.tag::before,
.section-tag::before,
.ph-tag::before,
.mvv-tag::before,
.content-section-label::before {
  background: var(--cyan);
}

.event-card-date-badge,
.event-hero-type,
.btn-register--cyan,
.btn-cyan,
.jhma-countdown-btn,
.jhma-cookies-btn--accept,
.jhma-live-badge,
.ep-number-badge,
.related-card-badge,
.issue-new-badge,
.leader-card-body,
.partner-cta-tag::before {
  background: var(--cyan);
}

/* Bordures accent */
.jhma-countdown {
  border-bottom-color: var(--cyan);
}
.event-card:hover,
.member-card:hover,
.ep-card:hover,
.issue-card:hover,
.partner-flip:hover .partner-flip-front,
.dept-card:hover,
.info-card,
.register-card {
  border-color: var(--cyan);
}

/* Noir/Primary */
.page-header--dark,
.leadership,
.values,
.partner-cta,
.podcast-hero,
.jhma-404,
.register-card-header,
.info-card-header {
  background: var(--black);
}

.btn-register,
.btn-register-bar,
.btn-cta-dark,
.btn-submit,
.btn-home,
.jhma-countdown {
  background: var(--black);
}

/* Surface (cards sombres) */
.mvv--s1 .mvv-card,
.value-card,
.leader-card {
  background: var(--surface, #333333);
}

/* Hover sur la ligne MVV */
.mvv--s1 .mvv-card-line,
.value-line {
  background: var(--cyan);
}

/* ============================================================
   LANG SWITCHER - PREMIUM BOLD CAPSULE PILL
   ============================================================ */
.jhma-lang-switcher {
  display: inline-flex;
  align-items: center;
  background: var(--neutral, #3a3a3a);
  border-radius: 6px;
  padding: 6px;
  gap: 4px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.jhma-lang-btn {
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 4px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--sans, "Fira Sans", sans-serif);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.jhma-lang-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
}

.jhma-lang-btn.active {
  opacity: 1 !important;
  background: var(--primary, var(--cyan, #2bb8dc)) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.jhma-lang-sep {
  display: none !important; /* Hide separator in pill design */
}

/* Dark mode compatibility */
html.jhma-dark .jhma-lang-switcher,
.mobile-panel__nav .jhma-lang-switcher {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

html.jhma-dark .jhma-lang-btn,
.mobile-panel__nav .jhma-lang-btn {
  color: rgba(255, 255, 255, 0.5);
}

html.jhma-dark .jhma-lang-btn:hover,
.mobile-panel__nav .jhma-lang-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

html.jhma-dark .jhma-lang-btn.active,
.mobile-panel__nav .jhma-lang-btn.active {
  background: var(--primary, var(--cyan, #2bb8dc)) !important;
  color: #ffffff !important;
  opacity: 1 !important;
  box-shadow: 0 3px 10px rgba(var(--cyan-rgb), 0.45);
}

/* ============================================================
   PAGE-SPECIFIC WATERMARKS (ADDED TO MATCH ORIGINAL HTML)
   ============================================================ */
.jhma-page--newsletters .page-header::before {
  content: "INFOLETTRES";
  position: absolute;
  right: -20px;
  bottom: -20px;
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 10rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.02);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  pointer-events: none;
  line-height: 1;
}

.jhma-404::before {
  content: "404";
  position: absolute;
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: clamp(20rem, 40vw, 36rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.02);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}
.jhma-404::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(43, 184, 220, 0.05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}
.jhma-404 .error-404-wrap {
  position: relative;
  z-index: 1;
}

.jhma-page--members .page-header::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 350px;
  height: 350px;
  border: 2px solid rgba(43, 184, 220, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.jhma-page--partners .page-header::before,
.jhma-page--commanditaires .page-header::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 350px;
  height: 350px;
  border: 2px solid rgba(43, 184, 220, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.jhma-404 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

/* ============================================================
   MEMBER PROFILE BOX (INLINE)
   ============================================================ */
.member-profile-box {
    background: #1a1a1a;
    border-top: 3px solid #2BB8DC;
    margin: 0 0 32px 0;
    overflow: hidden;
    animation: slideDown .25s ease;
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.profile-box-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    position: relative;
    min-height: 300px;
}
.profile-box-close {
    position: absolute;
    top: 16px; right: 16px;
    width: 32px; height: 32px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.5);
    font-size: 1rem; font-weight: 700;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all .15s;
    border-radius: 0;
}
.profile-box-close:hover {
    background: rgba(239,68,68,.15);
    color: #ef4444;
    border-color: rgba(239,68,68,.3);
}
.profile-box-photo {
    overflow: hidden;
    position: relative;
}
.profile-box-photo img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: top;
    display: block;
    min-height: 300px;
}
.profile-box-body {
    padding: 36px 48px 36px 36px;
    display: flex; flex-direction: column; justify-content: center;
}
.profile-box-role {
    font-size: .65rem; font-weight: 800;
    color: #2BB8DC;
    text-transform: uppercase; letter-spacing: .18em;
    margin-bottom: 10px;
}
.profile-box-name {
    font-family: 'Fira Sans Condensed', sans-serif;
    font-size: 2.4rem; font-weight: 800;
    color: #fff;
    text-transform: uppercase; line-height: 1;
    letter-spacing: .02em;
    margin-bottom: 10px;
}
.profile-box-dept {
    font-size: .78rem; color: rgba(255,255,255,.35);
    font-weight: 600; text-transform: uppercase;
    letter-spacing: .08em; margin-bottom: 20px;
}
.profile-box-bio {
    font-size: .88rem; color: rgba(255,255,255,.5);
    line-height: 1.75; font-weight: 300;
    max-width: 560px;
}
@media (max-width: 640px) {
    .profile-box-inner { grid-template-columns: 1fr; }
    .profile-box-photo img { min-height: 200px; max-height: 240px; }
    .profile-box-body { padding: 24px; }
    .profile-box-name { font-size: 1.8rem; }
}

/* ============================================================
   WHO WE ARE - TEAM PREVIEW
   ============================================================ */
.wwa-team-preview { display:flex; flex-direction:column; gap:16px; }
.wwa-team-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:4px; }
.wwa-team-thumb { aspect-ratio:1; overflow:hidden; }
.wwa-team-thumb img { width:100%; height:100%; object-fit:cover; object-position:top; filter:grayscale(20%); transition:filter .3s; }
.wwa-team-thumb:hover img { filter:grayscale(0); }
.wwa-team-link { font-size:.72rem; font-weight:800; color:#2BB8DC; text-transform:uppercase; letter-spacing:.12em; text-decoration:none; display:flex; align-items:center; gap:6px; padding-top:4px; border-top:1px solid rgba(43,184,220,.2); }
.wwa-team-link:hover { gap:10px; }

/* ============================================================
   MOBILE PAGE HEADER OVERRIDES
   ============================================================ */
@media (max-width: 768px) {
    .page-header {
        padding-top: 100px !important;
    }
    .podcast-hero {
        padding-top: 100px !important;
    }
    .page-header--dark {
        padding-top: 100px !important;
    }
}

@media (max-width: 480px) {
    .page-header,
    .podcast-hero,
    .page-header--dark {
        padding-top: 80px !important;
    }
}

/* ============================================================
   MOBILE HERO HOMEPAGE OVERRIDES
   ============================================================ */
/* 1) RÉDUIRE LA TAILLE DU TITRE HERO */
@media (max-width: 768px) {
    .hero-title,
    .hero__title,
    .h1-title,
    .hero-title-line1,
    .hero-title-accent,
    .hero-title-line2,
    .page-header h1 {
        font-size: clamp(1.8rem, 8vw, 2.8rem) !important;
        line-height: 1.05 !important;
    }
}

@media (max-width: 480px) {
    .hero-title,
    .hero__title,
    .h1-title,
    .hero-title-line1,
    .hero-title-accent,
    .hero-title-line2,
    .page-header h1 {
        font-size: clamp(1.6rem, 7vw, 2.2rem) !important;
        line-height: 1.05 !important;
    }
}

/* 2) RÉDUIRE LA HAUTEUR MINIMUM DU HERO */
@media (max-width: 768px) {
    .hero,
    .site-hero,
    .front-hero,
    .hero1 {
        min-height: 85vh !important;
        align-items: flex-start !important;
    }
}

@media (max-width: 480px) {
    .hero,
    .site-hero,
    .front-hero,
    .hero1 {
        min-height: 100svh !important;
        align-items: flex-start !important;
    }
}

/* 3) S'ASSURER que le texte du hero est dans la moitié gauche */
@media (max-width: 768px) {
    .hero-content,
    .hero__content,
    .hero-inner,
    .h1-content {
        max-width: 85% !important;
        padding-bottom: 40px !important;
        text-align: left !important;
        margin-top: 0 !important;
        padding-top: 140px !important;
    }
    .h1-actions {
        align-items: flex-start !important;
        flex-direction: column !important;
        width: auto !important;
        gap: 15px !important;
    }
    .h1-actions > * {
        width: auto !important;
        text-align: left !important;
        justify-content: flex-start !important;
    }
    .h1-eyebrow {
        justify-content: flex-start !important;
    }
}
