/* ============================================================
   EPYK — Layout & Grilles
   ============================================================ */

/* --- Conteneur centré --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-section-h);
}

.container--narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--spacing-section-h);
}

/* --- Section base --- */
.section {
  border-bottom: var(--border-thin);
}

.section--no-border {
  border-bottom: none;
}

.section--dark {
  background: var(--color-bg-2);
}

/* --- Padding sections standard --- */
.section-pad {
  padding: var(--spacing-section-v) var(--spacing-section-h);
}

.section-pad--hero {
  padding: 160px var(--spacing-section-h) 130px;
}

.section-pad--lg {
  padding: 140px var(--spacing-section-h);
}

/* --- Grid feature 2 colonnes --- */
.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.feat-grid--reverse {
  direction: rtl;
}

.feat-grid--reverse > * {
  direction: ltr;
}

/* --- Colonne texte feature --- */
.feat-copy {
  padding: 80px var(--spacing-section-h);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feat-copy .text-label {
  display: block;
  margin-bottom: 20px;
}

.feat-copy .text-section-title {
  margin-bottom: 20px;
}

.feat-copy .text-body {
  margin-bottom: 36px;
  max-width: 360px;
}

/* --- Colonne visuelle feature --- */
.feat-visual {
  background: var(--color-bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: var(--border-thin);
}

.feat-grid--reverse .feat-visual {
  border-left: none;
  border-right: var(--border-thin);
}

/* --- Grid trio stats --- */
.trio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trio-cell {
  padding: 72px 48px;
  text-align: center;
  border-right: var(--border-thin);
}

.trio-cell:last-child {
  border-right: none;
}

.trio-num {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 300;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 12px;
}

.trio-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* --- Flex utilitaires --- */
.flex {
  display: flex;
}

.flex--center {
  align-items: center;
  justify-content: center;
}

.flex--between {
  align-items: center;
  justify-content: space-between;
}

.flex--column {
  flex-direction: column;
}

.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-48 { gap: 48px; }

/* --- Text align utilitaires --- */
.text-center { text-align: center; }
.text-right  { text-align: right; }

/* --- Margin utilitaires --- */
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-28 { margin-top: 28px; }
.mt-36 { margin-top: 36px; }
.mt-48 { margin-top: 48px; }
.mt-56 { margin-top: 56px; }
.mt-64 { margin-top: 64px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-28 { margin-bottom: 28px; }
.mb-36 { margin-bottom: 36px; }
.mb-48 { margin-bottom: 48px; }
.mb-56 { margin-bottom: 56px; }
