/* ==================== V2 — compléments au design system V1 ==================== */

/* Rangée de CTA du hero */
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Bouton secondaire (contour or) */
.btn-outline {
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.6);
  color: #d4af37;
}
.btn-outline:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: #d4af37;
}

/* CTA centré en pied de section */
.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* Tableau domaines (page architecture) */
.table-scroll {
  overflow-x: auto;
  margin-top: 24px;
}
.domains-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}
.domains-table th,
.domains-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.domains-table th {
  color: #d4af37;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Note discrète (teaser élevage) */
.muted-note {
  opacity: 0.75;
  font-style: italic;
  text-align: center;
  margin-top: 28px;
}

/* Placeholder de contenu à compléter (visible volontairement) */
.todo-placeholder {
  border: 1px dashed rgba(212, 175, 55, 0.5);
  border-radius: 8px;
  padding: 16px 20px;
  color: #d4af37;
  font-style: italic;
}

/* ==================== Page À propos — fondateur ==================== */

.founder-author {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 30px;
}
.founder-author img {
  width: 110px;
  height: auto;
  border-radius: 10px;
}
.founder-author .name {
  font-size: 1.3rem;
  font-weight: 700;
}
.founder-author .role {
  color: #d4af37;
  font-weight: 500;
}
.founder-letter p {
  max-width: 70ch;
}
.founder-letter .mission {
  color: #d4af37;
  font-weight: 600;
}

/* ==================== Sous-menu Services ==================== */

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dropdown .chev {
  font-size: 0.7em;
  margin-left: 5px;
  opacity: 0.8;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: rgba(10, 26, 42, 0.98);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 10px;
  padding: 8px;
  display: none;
  flex-direction: column;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: flex;
}
.nav-dropdown-menu a {
  padding: 10px 14px;
  border-radius: 6px;
  white-space: nowrap;
  justify-content: flex-start;
}
.nav-dropdown-group {
  padding: 10px 14px 4px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #d4af37;
  opacity: 0.85;
}
.nav-dropdown-sub {
  padding-left: 28px !important;
}

/* Mobile : sous-menu toujours déplié, en colonne */
@media (max-width: 768px) {
  .nav-dropdown {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }
  .nav-dropdown-menu {
    position: static;
    display: flex;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: rgba(212, 175, 55, 0.04);
    padding: 0;
  }
  .nav-dropdown-sub {
    padding-left: 48px !important;
  }
}


/* ==================== Article (Cahier R&D) ==================== */

.article-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.article-meta {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 10px;
}

.article-body h2 {
  color: var(--text);
  font-size: 1.45rem;
  margin: 42px 0 14px;
  text-align: left;
}

.article-body p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 16px;
  text-align: left;
  max-width: none;
}

.article-body p strong {
  color: var(--text);
  font-weight: 600;
}

.article-lead {
  font-size: 1.12rem;
  color: var(--text);
}

.article-body .article-lead {
  color: var(--text);
}

.article-pull {
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 18px;
  margin: 28px 0;
  color: var(--gold);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.5;
}

.article-box {
  background: var(--bg-alt);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-sm);
  padding: 18px 22px 10px;
  margin: 28px 0;
}

.article-box-title {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.article-box p {
  margin: 0 0 8px;
}

.article-pdf {
  margin-top: 36px;
  text-align: left;
}

.article-pdf a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
}

.article-pdf a:hover {
  border-bottom-color: var(--gold);
}

.apropos-article {
  margin-top: 28px;
}

.apropos-article a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
}

.apropos-article a:hover {
  border-bottom-color: var(--gold);
}


/* ==================== Vidéos (page À propos) ==================== */

/* titre + chapo centres sur l'axe des lecteurs video */
#videos-title,
#videos-title + .section-intro {
  text-align: center;
}

#videos-title + .section-intro {
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
}

.talk {
  max-width: 820px;
  margin: 44px auto 0;
}

.talk .brightwin-video {
  max-width: 100%;
  margin: 0;
}

.talk figcaption {
  margin-top: 18px;
}

.talk figcaption h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.talk figcaption p {
  max-width: 70ch;
  margin-bottom: 0;
}

.talk .talk-meta {
  margin-top: 8px;
  font-size: 0.9rem;
  opacity: 0.7;
}
