:root {
  --font-main: 'Inter', sans-serif;
  --text-primary: #1C1C1C;
  --text-secondary: #5A5A5A;
  --bg-primary: #F4EFE8;
  --bg-header: #EFE9E0;
  --bg-footer: #E8E1D7;
  --accent-gray: rgba(190, 184, 174, 0.2);
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #1C1C1C;
  background-color: #F4EFE8;
  -webkit-font-smoothing: antialiased;
}

/* =====================
   HEADER
===================== */
.nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 5%;
  background-color: #EFE9E0;
}

.header-identity {
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand-name {
  font-size: 16px;
  font-weight: 500;
  color: #1C1C1C;
  letter-spacing: -0.01em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  text-decoration: none;
  color: #5A5A5A;
  font-size: 14px;
  position: relative;
  transition: color 0.3s ease;
  padding-bottom: 2px;
}

/* Soulignement animé pour les liens header */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #1C1C1C;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #1C1C1C;
}

/* État actif — page courante */
.nav-link.current {
  color: var(--text-primary);
  background-color: var(--accent-gray);
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 500;
  pointer-events: none;
}

.nav-link.current::after {
  display: none;
}

.nav-link:hover::after {
  width: 100%;
}

/* =====================
   HERO BANNER
===================== */
.hero-banner {
  position: relative;
  min-height: 800px;
  padding: 180px 5% 100px;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 50%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1100px;
}

.h1-hero {
  font-size: 64px;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 32px;
  color: #1C1C1C;
}

.hero-intro {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 48px;
  font-weight: 300;
  color: #1C1C1C;
}

.hero-cta {
  font-size: 18px;
  color: #1C1C1C;
  text-decoration: none;
  padding-bottom: 4px;
  font-weight: 600;
  display: inline-block;
  position: relative;
  transition: transform 0.3s ease;
}

/* Soulignement + flèche pour le CTA hero */
.hero-cta::after {
  content: ' →';
  transition: transform 0.3s ease;
  display: inline-block;
}

.hero-cta::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #1C1C1C;
  transform-origin: left;
  transition: transform 0.3s ease;
}

.hero-cta:hover::after {
  transform: translateX(4px);
}

.hero-cta:hover::before {
  transform: scaleX(1.05);
}

/* =====================
   INTRO SECTION
===================== */
.intro-section-branding {
  padding: 120px 5% 40px;
}

.container-narrow {
  max-width: 56ch;
}

.intro-title {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.3;
  color: #1C1C1C;
}

.para-context {
  font-size: 20px;
  line-height: 1.6;
  color: #5A5A5A;
  margin-bottom: 32px;
}

/* =====================
   GRILLE OFFRES (2x2)
===================== */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 40px;
  padding: 40px 5% 120px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.offer-item {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 0;
  position: relative;
  z-index: 1;
}

/* Badge (petit texte uppercase) */
.offer-badge {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: #5A5A5A;
  margin-bottom: 12px;
  height: 14px; /* Garde l'alignement même si vide */
}

/* Hook (phrase en italique) */
.offer-hook {
  font-size: 14px;
  font-style: italic;
  color: #5A5A5A;
  opacity: 0.8;
  margin: 0 0 4px 0;
  line-height: 1.4;
  height: 40px;
  display: flex;
  align-items: flex-start;
}

/* Variante pour "OFFRE EN PRÉPARATION" */
.offer-hook.status-style {
  font-style: italic;
  text-transform: none;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0;
  color: #5A5A5A;
  opacity: 0.6;
}

/* Titre de l'offre */
.offer-title {
  font-size: 24px;
  font-weight: 600;
  color: #1C1C1C;
  margin: 0 0 16px 0;
  line-height: 1.3;
}

/* Description */
.offer-description {
  font-size: 15px;
  line-height: 1.6;
  color: #5A5A5A;
  margin-bottom: 28px;
}

/* CTA plus visible */
.offer-link {
  font-size: 14px;
  font-weight: 600;
  color: #1C1C1C;
  text-decoration: none;
  padding-bottom: 3px;
  display: inline-block;
  align-self: start;
  position: relative;
  width: fit-content;
  border-bottom: 1.5px solid #1C1C1C;
  transition: opacity 0.2s ease;
  margin-top: 4px;
}

.offer-link:hover {
  opacity: 0.7;
}

/* Status "Disponible prochainement" */
.status-soon {
  font-size: 14px;
  font-weight: 600;
  color: #1C1C1C;
  display: flex;
  align-items: center;
  gap: 8px;
  align-self: start;
  margin-top: 4px;
}

/* =====================
   FOOTER
===================== */
.footer {
  padding: 100px 5% 40px;
  background-color: #E8E1D7;
  border-top: 1px solid rgba(28, 28, 28, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-heading {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
  text-transform: uppercase;
  color: #1C1C1C;
}

/* Liens footer avec soulignement animé */
.footer .nav-link {
  display: inline-block;
  margin-bottom: 8px;
}

.footer-copy {
  font-size: 12px;
  color: #5A5A5A;
  margin-top: 20px;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 991px) {
  .nav-menu {
    display: none;
  }

  .h1-hero {
    font-size: 40px;
  }

  .intro-section-branding {
    padding: 80px 5% 30px;
  }

  .offers-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 30px 5% 80px;
  }

  .offer-item {
    display: flex;
    flex-direction: column;
  }

  .offer-badge {
    height: auto;
  }

  .offer-hook {
    height: auto;
    margin-bottom: 4px;
  }

  .offer-title {
    font-size: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Titre principal (Ligne 1) */
.intro-lead {
  font-size: 26px;
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #1C1C1C;
}

/* Conteneur Ligne 2 (Respiration & Saut de ligne) */
.lead-break {
  display: block;
  margin-top: 24px;
  color: #1C1C1C;
}

/* Mots clés (Juste du gras) */
.lead-emphasis {
  font-weight: 500;
  color: #1C1C1C;
}
