/* Modale Contact — 141_PRODUCTIONZ */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

[data-modal-group-status="active"].contact-modal {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-modal .modal__dark {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.contact-modal .contact-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.5rem;
  background: #0a0a0a;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.65);
  display: none;
  flex-direction: column;
  pointer-events: auto;
}

.contact-modal [data-modal-name="contact"][data-modal-status="active"] {
  display: flex;
}

.contact-panel__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.contact-panel__close-bar {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.1rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
  transform-origin: center;
}

.contact-panel__close-bar:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.contact-panel__close-bar:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.contact-panel__inner {
  padding: clamp(2rem, 5vw, 2.5rem) clamp(1.5rem, 4vw, 2rem);
}

.contact-panel__eyebrow {
  margin: 0 0 0.5rem;
  font-family: Barlow, sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.contact-panel__title {
  margin: 0 0 0.75rem;
  font-family: Barlow, sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff !important;
}

.contact-panel__lead {
  margin: 0 0 1.5rem;
  font-family: Barlow, sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55) !important;
}

.contact-panel__links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.contact-panel__link {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.35rem;
  text-decoration: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.contact-panel__link:hover {
  border-color: rgba(220, 38, 38, 0.45);
  background: rgba(220, 38, 38, 0.06);
}

.contact-panel__link-label {
  font-family: Barlow, sans-serif;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.contact-panel__link-handle {
  font-family: Barlow, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff !important;
}

.contact-panel__footer {
  margin: 1.25rem 0 0;
  font-family: Barlow, sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
}

/* Déclencheurs Contact (nav, footer, CTA) */
[data-modal-target="contact"] {
  cursor: pointer;
  touch-action: manipulation;
}

._02px-nav__link[data-modal-target="contact"] {
  pointer-events: auto !important;
}
