:root {
  --beige-light: #faf6ee;
  --beige-mid: #f0e6d0;
  --beige-dark: #ddd0b3;
  --navy: #0b1e3d;
  --navy-mid: #142a52;
  --navy-light: #1e3a6b;
  --gold: #b8954a;
  --gold-light: #d4ae6a;
  --gold-pale: #f0e2c0;
  --white: #fdfaf5;
  --text-dark: #1a1208;
  --text-mid: #3d2f1a;
  --text-muted: #7a6a50;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--beige-light);
  color: var(--text-dark);
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--beige-dark);
}
.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-decoration: none;
}
.nav-logo span {
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.25s;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-cta {
  background: var(--navy);
  color: var(--gold-pale);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.65rem 1.8rem;
  border: none;
  cursor: pointer;
  transition:
    background 0.25s,
    color 0.25s;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 4rem 5rem;
  position: relative;
}
.hero-left::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}
.hero-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.hero-tag::before {
  content: "";
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}
.hero-h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1rem;
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(253, 250, 245, 0.6);
  max-width: 40ch;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border: none;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  transition: all 0.25s;
  text-decoration: none;
}
.btn-gold:hover {
  background: var(--gold-light);
}
.btn-outline {
  background: transparent;
  color: var(--gold-pale);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border: 1px solid rgba(253, 250, 245, 0.25);
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  transition: all 0.25s;
  text-decoration: none;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.hero-right {
  background: var(--beige-mid);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 4rem;
  position: relative;
  overflow: hidden;
}
.hero-deco {
  position: absolute;
  top: 3rem;
  right: 3rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 12rem;
  font-weight: 300;
  color: var(--beige-dark);
  opacity: 0.4;
  line-height: 1;
  user-select: none;
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.hero-stat {
  border-left: 2px solid var(--gold);
  padding-left: 1.2rem;
}
.hero-stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
}
.hero-stat-lbl {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}
.hero-card {
  background: var(--navy);
  padding: 2.2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
}
.hero-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}
.hero-card p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(253, 250, 245, 0.65);
}

/* ── SECTION GENERIQUE ── */
section {
  padding: 6rem 5rem;
}
.section-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.section-tag::before {
  content: "";
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}
.section-h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--navy);
}
.section-h2 em {
  font-style: italic;
  color: var(--gold);
}
.gold-rule {
  display: block;
  width: 4rem;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-pale));
  margin: 1.5rem 0;
}

/* ── POURQUOI ── */
.pourquoi-section {
  background: var(--beige-mid);
  border-bottom: 1px solid var(--beige-dark);
}
.pourquoi-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.pourquoi-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--navy);
  font-style: italic;
  border-left: 2px solid var(--gold);
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}
.pourquoi-sig {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.pourquoi-body {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--text-mid);
}

/* ── DEUX ENTRÉES ── */
.entrees-section {
  background: var(--navy);
}
.entrees-section .section-h2 {
  color: var(--white);
}
.entrees-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 4rem;
  background: rgba(255, 255, 255, 0.06);
}
.entree-card {
  background: var(--navy-mid);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.entree-card:hover {
  background: var(--navy-light);
}
.entree-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), transparent);
}
.entree-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}
.entree-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 6rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.04);
  position: absolute;
  top: 1rem;
  right: 2rem;
  line-height: 1;
  user-select: none;
}
.entree-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.entree-tag::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--gold);
}
.entree-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.entree-title em {
  font-style: italic;
  color: var(--gold-light);
}
.entree-desc {
  font-size: 0.88rem;
  line-height: 1.85;
  color: rgba(253, 250, 245, 0.55);
  margin-bottom: 2rem;
  max-width: 44ch;
}
.entree-cta {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.7rem 1.8rem;
  border: 1px solid rgba(184, 149, 74, 0.4);
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition: all 0.3s;
}
.entree-cta:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* ── TÂCHES ── */
.taches-section {
  background: var(--beige-light);
}
.taches-intro {
  max-width: 60ch;
  margin-bottom: 4rem;
}
.taches-intro p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-top: 1rem;
}
.taches-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.tache-group {
  background: var(--white);
  border: 1px solid var(--beige-dark);
  padding: 2.2rem;
  position: relative;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.tache-group:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.tache-group::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.tache-group:hover::after {
  transform: scaleX(1);
}
.tache-group-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.tache-group-sub {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.tache-divider {
  height: 1px;
  background: var(--beige-dark);
  margin-bottom: 1.2rem;
}
.tache-list {
  list-style: none;
}
.tache-list li {
  font-size: 0.84rem;
  line-height: 1.85;
  color: var(--text-mid);
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.15rem;
}
.tache-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0.7;
}

/* ── PROCESS ── */
.process-section {
  background: var(--beige-mid);
}
.process-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.process-card {
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid var(--beige-dark);
  position: relative;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.process-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.process-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.process-card:hover::after {
  transform: scaleX(1);
}
.process-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--beige-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.process-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.7rem;
}
.process-body {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ── ENGAGEMENTS ── */
.engagements-section {
  background: var(--navy);
  overflow: hidden;
  position: relative;
}
.engagements-section::before {
  content: "CONFIANCE";
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Cormorant Garamond", serif;
  font-size: 14rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  pointer-events: none;
}
.engagements-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.engagements-left .section-h2 {
  color: var(--white);
}
.engagements-left p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(253, 250, 245, 0.6);
  margin-top: 1.5rem;
}
.engagements-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.engagement-point {
  border-left: 2px solid var(--gold);
  padding: 1rem 1.5rem;
}
.engagement-point h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}
.engagement-point p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(253, 250, 245, 0.6);
}

/* ── CONVICTION ── */
.conviction-section {
  background: var(--beige-mid);
}
.conviction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.conviction-card {
  background: var(--white);
  padding: 2rem;
  border: 1px solid var(--beige-dark);
}
.conviction-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.conviction-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.6;
}

/* ── CTA ── */
.cta-section {
  background: var(--navy);
  text-align: center;
  padding: 8rem 5rem;
}
.cta-section .section-h2 {
  color: var(--white);
  max-width: 20ch;
  margin: 0 auto;
}
.cta-section .section-tag {
  justify-content: center;
}
.cta-section p,
.cta-section address {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(253, 250, 245, 0.6);
  max-width: 52ch;
  margin: 1.5rem auto 3rem;
}

address {
  font-style: normal;
}

.cta-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-outline-nav {
  background: transparent;
  color: rgba(253, 250, 245, 0.85);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border: 1px solid rgba(253, 250, 245, 0.2);
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition: all 0.25s;
}
.btn-outline-nav:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.cta-note {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253, 250, 245, 0.3);
  margin-top: 1.5rem;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 2.5rem 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
}
.footer-logo span {
  color: var(--gold);
}
.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253, 250, 245, 0.4);
  text-decoration: none;
  transition: color 0.25s;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-copy {
  font-size: 0.72rem;
  color: rgba(253, 250, 245, 0.3);
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in {
  opacity: 0;
  transition: opacity 0.9s ease;
}
.fade-in.visible {
  opacity: 1;
}

@media (max-width: 900px) {
  nav {
    padding: 1rem 1.5rem;
  }
  .nav-links {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-right {
    display: none;
  }
  .hero-left {
    padding: 7rem 2rem 4rem;
  }
  section {
    padding: 4rem 2rem;
  }
  .pourquoi-inner,
  .entrees-grid,
  .engagements-inner {
    grid-template-columns: 1fr;
  }
  .taches-cols,
  .process-cards,
  .conviction-grid {
    grid-template-columns: 1fr;
  }
  .entree-card {
    padding: 2.5rem;
  }
  footer {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}
