/* NT PROCON — charte graphique officielle (tokens & utilitaires) */

:root {
  --procon-lime: #8DC63F;
  --procon-lime-rgb: 141, 198, 63;
  --procon-black: #1A1A1A;
  --procon-dark: #2D2D2D;
  --procon-gray: #F8F9FA;
  --procon-muted: #7A7A7A;
  --procon-font-display: "Montserrat", sans-serif;
  --procon-font-body: "Urbanist", sans-serif;
}

/* Logotype texte (charte §2) */
.procon-logotype {
  display: inline-flex;
  align-items: baseline;
  gap: 0.2em;
  font-family: var(--procon-font-display);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  text-decoration: none;
  color: var(--procon-black);
  white-space: nowrap;
}

.procon-logotype--on-dark {
  color: #fff;
}

.procon-logotype__accent {
  color: var(--procon-lime);
}

.procon-logotype--header {
  font-size: clamp(0.95rem, 2.8vw, 1.15rem);
}

.procon-logotype__tagline {
  display: block;
  font-family: var(--procon-font-body);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--procon-muted);
  margin-top: 0.35rem;
}

.procon-logotype--on-dark .procon-logotype__tagline {
  color: rgba(255, 255, 255, 0.55);
}

/* Logo dual : image sur fond sombre, texte sur fond clair */
.header__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.procon-logo--on-light {
  display: none !important;
}

.procon-logo--on-dark {
  display: block !important;
}

body.is-menu-open .header__logo .procon-logo--on-dark,
body.reserve-popup-open .header__logo .procon-logo--on-dark {
  display: none !important;
}

body.is-menu-open .header__logo .procon-logo--on-light,
body.reserve-popup-open .header__logo .procon-logo--on-light {
  display: inline-flex !important;
}

/* Labels de section — texte droit (charte) */
.procon-slant-badge,
.procon-home-section__kicker {
  display: inline-block;
  transform: none;
  background: var(--procon-black);
  color: var(--procon-lime);
  font-family: var(--procon-font-display);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  padding: 0.35rem 0.85rem;
  font-size: 0.62rem;
}

.procon-slant-badge > * {
  transform: none;
  display: inline;
}

/* Accent de section (charte §1) */
.procon-section-accent {
  border-left: 8px solid var(--procon-lime);
  padding-left: 1.25rem;
}

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

.procon-home-section__header.procon-section-accent {
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  max-width: 40rem;
}

.procon-about-intro__head.procon-section-accent {
  text-align: left;
}
