/* =========================
   BASE
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background: #f6f1e7;
  color: #101923;
}


/* =========================
   NAVBAR
========================= */

.navbar {
  position: absolute;

  top: 22px;
  left: 50%;

  transform: translateX(-50%);

  width: calc(100% - 64px);
  max-width: 1450px;

  min-height: 90px;

  padding: 0 40px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: linear-gradient(
    110deg,
    rgba(7, 23, 43, 0.97),
    rgba(12, 40, 70, 0.94)
  );

  border: 1px solid rgba(205, 165, 82, 0.9);

  border-radius: 14px;

  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.28);

  backdrop-filter: blur(10px);

  z-index: 100;
}


/* LOGO */

.logo-link {
  display: flex;
  align-items: center;

  text-decoration: none;
}

.logo-img {
  width: 260px;
  height: auto;

  display: block;
}


/* MENU */

nav {
  display: flex;
  align-items: center;

  gap: 42px;
}

nav a {
  font-family: "Manrope", sans-serif;

  font-size: 15px;
  font-weight: 500;

  letter-spacing: 0.4px;

  color: #f5f0e7;

  text-decoration: none;

  transition: 0.25s ease;
}

nav a:hover {
  color: #d5ae58;
}


/* CONTACT NAV */

.contact-btn {
  padding: 14px 28px;

  border: 1px solid #cda552;

  border-radius: 4px;

  color: #d5ae58;

  background: transparent;
}

.contact-btn:hover {
  background: #cda552;

  color: #101923;
}


/* =========================
   HERO
========================= */

.hero {
  position: relative;

  height: 820px;

  background-image: url("hero.png");

  background-size: cover;

  background-position: center;
}


/* FONDU SOMBRE À GAUCHE */

.overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(4, 13, 25, 0.96) 0%,
    rgba(4, 17, 32, 0.88) 28%,
    rgba(7, 27, 46, 0.57) 50%,
    rgba(7, 27, 46, 0.18) 70%,
    rgba(7, 27, 46, 0.02) 100%
  );
}


/* TEXTE HERO */

.hero-content {
  position: relative;

  z-index: 2;

  max-width: 720px;

  padding-top: 260px;

  margin-left: 7%;
}


/* TITRE */

.hero h1 {
  font-family: "Cormorant Garamond", serif;

  font-size: 82px;

  line-height: 1,06;

  font-weight: 500;

  letter-spacing: -1.7px;

  color: #f7f2e8;

  margin-bottom: 34px;
}

.hero h1 span {
  color: #d7ad57;
}


/* DESCRIPTION */

.hero p {
  max-width: 590px;

  font-family: "Manrope", sans-serif;

  font-size: 18px;

  line-height: 1.75;

  font-weight: 400;

  color: rgba(255, 255, 255, 0.9);
}


/* BOUTONS HERO */

.hero-actions {
  display: flex;

  align-items: center;

  gap: 40px;

  margin-top: 40px;
}


/* MON PROJET */

.primary-btn {
  display: inline-block;

  padding: 18px 34px;

  background: linear-gradient(
    135deg,
    #f2da8d,
    #d4a642
  );

  color: #131a20;

  text-decoration: none;

  font-family: "Manrope", sans-serif;

  font-size: 15px;

  font-weight: 500;

  border: 1px solid rgba(255, 225, 158, 0.75);

  border-radius: 4px;

  box-shadow:
    0 10px 28px rgba(206, 160, 62, 0.22);

  transition: 0.25s ease;
}

.primary-btn:hover {
  transform: translateY(-2px);

  box-shadow:
    0 14px 34px rgba(206, 160, 62, 0.32);
}


/* DÉCOUVRIR LES PROJETS */

.secondary-btn {
  color: #d7ad57;

  font-family: "Manrope", sans-serif;

  font-size: 15px;

  font-weight: 500;

  text-decoration: none;

  padding-bottom: 5px;

  border-bottom: 1px solid rgba(215, 173, 87, 0.85);
}


/* =========================
   PROJETS
========================= */

.projects {
  padding: 85px 7% 110px;

  background: #f6f1e7;

  color: #101923;
}


.section-header {
  display: flex;

  justify-content: space-between;

  align-items: flex-end;

  margin-bottom: 44px;
}


/* PETIT TITRE */

.section-title span {
  display: block;

  font-family: "Manrope", sans-serif;

  font-size: 12px;

  font-weight: 500;

  letter-spacing: 3px;

  color: #b68e45;

  margin-bottom: 8px;
}


/* PROJETS EN COURS */

.section-title h2 {
  font-family: "Cormorant Garamond", serif;

  font-size: 54px;

  line-height: 1;

  font-weight: 500;

  color: #101923;
}


/* VOIR TOUS */

.view-all {
  color: #a77e39;

  font-family: "Manrope", sans-serif;

  font-size: 14px;

  text-decoration: none;

  padding-bottom: 5px;

  border-bottom: 1px solid #a77e39;
}


/* GRILLE */

.project-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 28px;
}


/* CARTE */

.project-card {
  background: #ffffff;

  border-radius: 10px;

  overflow: hidden;

  box-shadow:
    0 12px 35px rgba(10, 20, 30, 0.09);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);

  box-shadow:
    0 20px 50px rgba(10, 20, 30, 0.14);
}


/* IMAGE PROJET */

.project-image {
  position: relative;

  height: 300px;

  background: linear-gradient(
    135deg,
    #d6dce1,
    #aab5c0
  );

  background-size: cover;

  background-position: center;
}


/* BADGE */

.project-badge {
  position: absolute;

  top: 18px;
  left: 18px;

  padding: 8px 12px;

  background: #0c1825;

  color: #d7ad57;

  font-family: "Manrope", sans-serif;

  font-size: 10px;

  letter-spacing: 1.8px;
}


/* INFOS PROJET */

.project-info {
  padding: 23px 24px 28px;
}

.project-city {
  font-family: "Manrope", sans-serif;

  color: #b68e45;

  font-size: 11px;

  letter-spacing: 2.5px;
}

.project-info h3 {
  font-family: "Cormorant Garamond", serif;

  font-size: 30px;

  line-height: 1.1;

  font-weight: 500;

  margin: 7px 0 9px;

  color: #111923;
}

.project-info p {
  font-family: "Manrope", sans-serif;

  font-size: 14px;

  color: #65707a;
}


/* =========================
   CONTACT BAS DE PAGE
========================= */

.contact-section {
  text-align: center;

  padding: 110px 20px;

  background: linear-gradient(
    135deg,
    #071a30,
    #102e4e
  );

  color: white;
}

.contact-section > span {
  color: #cda85d;

  font-size: 12px;

  letter-spacing: 3px;
}

.contact-section h2 {
  font-family: "Cormorant Garamond", serif;

  font-size: 54px;

  font-weight: 500;

  margin: 12px 0 18px;
}

.contact-section p {
  max-width: 550px;

  margin: 0 auto 35px;

  line-height: 1.7;

  color: rgba(255, 255, 255, 0.74);
}


/* BOUTON CONTACT */

.contact-bottom-btn {
  display: inline-block;

  padding: 16px 32px;

  border: 1px solid #d7ad57;

  color: #d7ad57;

  text-decoration: none;

  border-radius: 4px;

  transition: 0.25s ease;
}

.contact-bottom-btn:hover {
  background: #d7ad57;

  color: #101923;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

  .navbar {
    width: calc(100% - 30px);

    padding: 0 22px;
  }

  .logo-img {
    width: 190px;
  }

  nav {
    gap: 20px;
  }

  .hero-content {
    margin-left: 30px;

    margin-right: 30px;
  }

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

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

  .section-header {
    flex-direction: column;

    align-items: flex-start;

    gap: 20px;
  }
}


@media (max-width: 600px) {

  .navbar {
    min-height: 76px;
  }

  .logo-img {
    width: 165px;
  }

  .contact-btn {
    display: none;
  }

  .hero {
    height: 760px;
  }

  .hero-content {
    padding-top: 220px;
  }

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

  .hero p {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;

    align-items: flex-start;

    gap: 22px;
  }

}
.project-image-1 {
  background-image: url("marina.png");
  background-size: cover;
  background-position: center;
}

.project-image-2 {
  background-image: url("jerusalem.png");
  background-size: cover;
  background-position: center;
}

.project-image-3 {
  background-image: url("seatower.png");
  background-size: cover;
  background-position: center;
}
/* ==================================================
   PAGE MON PROJET
================================================== */

.project-page {
  margin: 0;
  background: #f5f0e6;
  color: #10233d;
  min-height: 100vh;
}


/* NAVBAR PAGE PROJET */

.project-navbar {
  height: 92px;
  padding: 0 6%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: #0b2038;

  border-bottom: 1px solid rgba(199, 160, 80, 0.65);
}

.project-logo {
  width: 245px;
  height: auto;
  display: block;
}

.project-nav {
  display: flex;
  align-items: center;
  gap: 42px;
}

.project-nav a {
  color: #f4efe6;

  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;

  text-decoration: none;

  transition: 0.25s;
}

.project-nav a:hover {
  color: #cda759;
}


/* STRUCTURE PRINCIPALE */

.project-intro {
  width: 92%;
  max-width: 1450px;

  margin: 42px auto;

  min-height: 720px;

  display: grid;
  grid-template-columns: 1fr 0.92fr;

  background: #faf7f0;

  border-radius: 22px;

  overflow: hidden;

  box-shadow:
    0 18px 55px rgba(19, 35, 55, 0.10);
}


/* GAUCHE */

.project-intro-content {
  padding: 68px 70px;
}


.project-eyebrow {
  display: block;

  font-family: "Manrope", sans-serif;

  font-size: 12px;
  font-weight: 500;

  letter-spacing: 3px;

  color: #ad8138;

  margin-bottom: 26px;
}


.project-intro-content h1 {
  font-family: "Cormorant Garamond", serif;

  font-size: 72px;
  line-height: 0.93;

  font-weight: 500;

  color: #10233d;

  margin: 0;
}


.small-gold-line {
  width: 48px;
  height: 1px;

  background: #bb9148;

  margin: 25px 0 24px;
}


.project-description {
  max-width: 600px;

  font-family: "Manrope", sans-serif;

  font-size: 16px;

  line-height: 1.7;

  color: #485563;

  margin-bottom: 44px;
}


/* TROIS ÉTAPES */

.project-steps {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 0;

  margin-bottom: 42px;
}


.project-step {
  padding: 0 24px;

  text-align: center;

  border-right: 1px solid rgba(174, 139, 76, 0.25);
}

.project-step:first-child {
  padding-left: 0;
}

.project-step:last-child {
  border-right: 0;
  padding-right: 0;
}


.step-icon {
  width: 52px;
  height: 52px;

  margin: 0 auto 15px;

  border: 1px solid #bd9145;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: "Cormorant Garamond", serif;

  font-size: 17px;

  color: #a87b31;

  background: #faf6ec;
}


.project-step h3 {
  font-family: "Cormorant Garamond", serif;

  font-size: 23px;

  font-weight: 500;

  color: #122641;

  margin-bottom: 8px;
}


.project-step p {
  font-family: "Manrope", sans-serif;

  font-size: 12px;

  line-height: 1.55;

  color: #69717a;
}


/* COMMENCER */

.start-project-btn {
  width: 100%;

  max-width: 360px;

  padding: 18px 28px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: linear-gradient(
    135deg,
    #c79643,
    #ab772b
  );

  color: white;

  font-family: "Manrope", sans-serif;

  font-size: 14px;
  font-weight: 500;

  letter-spacing: 2px;

  text-transform: uppercase;

  text-decoration: none;

  border-radius: 5px;

  box-shadow:
    0 9px 22px rgba(161, 111, 36, 0.22);

  transition: 0.25s;
}

.start-project-btn:hover {
  transform: translateY(-2px);

  box-shadow:
    0 14px 28px rgba(161, 111, 36, 0.28);
}


.start-project-btn span {
  font-size: 22px;
}


.see-projects-link {
  display: block;

  width: fit-content;

  margin: 22px 0 0 70px;

  color: #172b44;

  font-family: "Manrope", sans-serif;

  font-size: 13px;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  text-decoration: none;

  border-bottom: 1px solid #b58a45;

  padding-bottom: 4px;
}


/* RASSURANCE */

.project-reassurance {
  margin-top: 38px;

  display: flex;
  flex-wrap: wrap;

  gap: 13px;

  align-items: center;

  color: #a77b35;

  font-family: "Manrope", sans-serif;

  font-size: 11px;

  letter-spacing: 0.7px;
}


/* PARTIE DROITE */

.project-intro-visual {
  position: relative;

  min-height: 720px;

  overflow: hidden;
}


.project-photo {
  position: absolute;

  inset: 0;

  background-image: url("hero.png");

  background-size: cover;

  background-position: center;

  transform: scale(1.02);
}


.project-intro-visual::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(11, 32, 56, 0.02),
      rgba(11, 32, 56, 0.10)
    );
}


/* CITATION */

.photo-quote {
  position: absolute;

  z-index: 2;

  top: 65px;
  left: 55px;

  max-width: 310px;

  color: #152943;
}


.photo-quote span {
  display: block;

  font-family: Georgia, serif;

  font-size: 48px;

  line-height: 0.7;

  color: #b98b3f;
}


.photo-quote p {
  font-family: "Cormorant Garamond", serif;

  font-size: 26px;

  line-height: 1.12;

  margin-top: 12px;
}


/* CARTE CONFIANCE */

.trust-card {
  position: absolute;

  z-index: 3;

  bottom: 38px;
  right: 34px;

  width: 310px;

  padding: 22px;

  display: flex;

  gap: 16px;

  background: rgba(10, 31, 54, 0.95);

  border: 1px solid rgba(207, 167, 89, 0.55);

  border-radius: 10px;

  color: white;

  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.18);
}


.trust-icon {
  min-width: 42px;
  height: 42px;

  border: 1px solid #cfa759;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #cfa759;

  font-size: 20px;
}


.trust-card strong {
  display: block;

  color: #d1a95b;

  font-family: "Manrope", sans-serif;

  font-size: 12px;

  letter-spacing: 1px;
}


.trust-card p {
  margin-top: 8px;

  color: rgba(255,255,255,0.76);

  font-family: "Manrope", sans-serif;

  font-size: 11px;

  line-height: 1.5;
}


/* TABLETTE */

@media (max-width: 1000px) {

  .project-intro {
    grid-template-columns: 1fr;
  }

  .project-intro-visual {
    min-height: 520px;
  }

}


/* MOBILE */

@media (max-width: 650px) {

  .project-navbar {
    height: 78px;

    padding: 0 20px;
  }

  .project-logo {
    width: 180px;
  }

  .project-nav a:not(:last-child) {
    display: none;
  }

  .project-intro {
    width: calc(100% - 24px);

    margin: 18px auto;

    border-radius: 14px;
  }

  .project-intro-content {
    padding: 42px 28px;
  }

  .project-intro-content h1 {
    font-size: 54px;
  }

  .project-steps {
    grid-template-columns: 1fr;

    gap: 28px;
  }

  .project-step {
    border-right: 0;

    padding: 0;
  }

  .see-projects-link {
    margin-left: 0;
  }

  .project-reassurance {
    line-height: 1.8;
  }

}
/* ==================================================
   NOUVELLE PAGE MON PROJET
================================================== */

.project-page {
  margin: 0;
  min-height: 100vh;
  background: #f5eee3;
  color: #102038;
}


/* NAVBAR */

.project-navbar {
  height: 100px;

  padding: 0 6%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: #071a2d;

  border-bottom: 1px solid rgba(198, 155, 75, 0.6);
}

.project-logo {
  width: 235px;
  height: auto;
  display: block;
}

.project-nav {
  display: flex;
  align-items: center;
  gap: 42px;
}

.project-nav a {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  letter-spacing: 1px;

  color: #f3eee5;

  text-decoration: none;
}

.project-nav a:hover {
  color: #c69b4b;
}

.project-nav-btn {
  padding: 14px 23px;

  border: 1px solid #c69b4b;

  color: #c69b4b !important;
}


/* HERO INTRO */

.project-intro-v2 {
  min-height: 555px;

  display: grid;

  grid-template-columns: 1fr 1fr;

  background: #f5eee3;
}


/* GAUCHE */

.project-intro-left {
  padding: 68px 6.5% 55px;
}

.project-eyebrow-v2 {
  display: block;

  margin-bottom: 22px;

  font-family: "Manrope", sans-serif;

  font-size: 12px;
  font-weight: 500;

  letter-spacing: 3px;

  color: #b7893d;
}


.project-intro-left h1 {
  margin: 0;

  font-family: "Cormorant Garamond", serif;

  font-size: 76px;
  font-weight: 500;

  line-height: 0.92;

  letter-spacing: -1.5px;

  color: #0c1e34;
}


.gold-line-v2 {
  width: 58px;
  height: 2px;

  margin: 26px 0 26px;

  background: #b58940;
}


.project-description-v2 {
  max-width: 580px;

  margin-bottom: 34px;

  font-family: "Manrope", sans-serif;

  font-size: 15px;

  line-height: 1.65;

  color: #354251;
}


/* BOUTON QUESTIONNAIRE */

.questionnaire-btn {
  width: 355px;

  padding: 18px 22px;

  display: flex;

  justify-content: space-between;
  align-items: center;

  background: #071a2d;

  border: 1px solid #b88a3e;

  box-shadow: 0 8px 20px rgba(32, 23, 12, 0.12);

  font-family: "Manrope", sans-serif;

  font-size: 12px;
  font-weight: 600;

  letter-spacing: 1.5px;

  color: #c99c4f;

  text-decoration: none;

  transition: 0.25s ease;
}

.questionnaire-btn:hover {
  transform: translateY(-2px);

  background: #0c253f;
}

.questionnaire-btn span {
  font-size: 22px;
}


/* RASSURANCE */

.reassurance-v2 {
  margin-top: 31px;

  display: flex;

  flex-wrap: wrap;

  gap: 14px;

  font-family: "Manrope", sans-serif;

  font-size: 11px;

  color: #6e6354;
}


/* DROITE */

.project-intro-right {
  position: relative;

  padding: 34px 6% 34px 0;
}


.project-main-photo {
  width: 100%;
  height: 100%;

  min-height: 485px;

  background-image: url("hero.png");

  background-size: cover;

  background-position: center;

  border-radius: 22px;
}


/* CARTE CITATION */

.project-quote-card {
  position: absolute;

  right: 10%;
  bottom: 8px;

  width: 350px;

  padding: 24px 30px;

  background: rgba(250, 247, 240, 0.96);

  border-radius: 9px;

  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.quote-symbol {
  display: block;

  font-family: Georgia, serif;

  font-size: 45px;

  color: #b68a42;

  line-height: 0.7;
}

.project-quote-card p {
  margin: 12px 0 14px;

  font-family: "Cormorant Garamond", serif;

  font-size: 22px;

  line-height: 1.15;

  color: #273442;
}

.quote-line {
  width: 42px;
  height: 1px;

  background: #b68a42;
}


/* ENGAGEMENT */

.engagement-section {
  padding: 42px 6% 80px;

  background: #faf6ef;
}


.engagement-heading {
  text-align: center;

  margin-bottom: 35px;
}

.engagement-heading span {
  font-family: "Manrope", sans-serif;

  font-size: 11px;

  letter-spacing: 2.5px;

  color: #b7893d;
}

.engagement-heading h2 {
  margin-top: 10px;

  font-family: "Cormorant Garamond", serif;

  font-size: 34px;

  font-weight: 500;

  color: #17273a;
}


/* CARTES */

.engagement-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;

  max-width: 1300px;

  margin: 0 auto;
}

.engagement-card {
  min-height: 180px;

  padding: 30px;

  display: flex;

  gap: 22px;

  background: rgba(255, 255, 255, 0.55);

  border: 1px solid rgba(193, 157, 96, 0.17);

  border-radius: 8px;

  box-shadow: 0 8px 25px rgba(41, 31, 19, 0.05);
}


.engagement-icon {
  min-width: 52px;
  height: 52px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #f2e8d8;

  color: #bd8d40;

  font-family: "Cormorant Garamond", serif;

  font-size: 25px;
}


.engagement-card h3 {
  margin-bottom: 12px;

  font-family: "Manrope", sans-serif;

  font-size: 12px;

  line-height: 1.6;

  letter-spacing: 1px;

  color: #172536;
}


.engagement-card p {
  font-family: "Manrope", sans-serif;

  font-size: 12px;

  line-height: 1.6;

  color: #5e6570;
}


/* TABLETTE */

@media (max-width: 950px) {

  .project-intro-v2 {
    grid-template-columns: 1fr;
  }

  .project-intro-right {
    padding: 20px;
  }

  .project-main-photo {
    min-height: 450px;
  }

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

}


/* MOBILE */

@media (max-width: 650px) {

  .project-navbar {
    height: 78px;

    padding: 0 20px;
  }

  .project-logo {
    width: 170px;
  }

  .project-nav a:not(.project-nav-btn) {
    display: none;
  }

  .project-nav-btn {
    padding: 10px 14px;
  }

  .project-intro-left {
    padding: 45px 28px;
  }

  .project-intro-left h1 {
    font-size: 56px;
  }

  .questionnaire-btn {
    width: 100%;
  }

  .reassurance-v2 {
    line-height: 1.8;
  }

  .project-quote-card {
    position: relative;

    right: auto;
    bottom: auto;

    width: calc(100% - 30px);

    margin: -80px auto 20px;
  }

}
/* =========================================================
   PAGE MON PROJET V3
========================================================= */

.project-page-v3 {
  margin: 0;
  min-height: 100vh;

  background: #f4ede2;

  color: #132438;
}


/* =========================
   NAVBAR
========================= */

.project-navbar-v3 {
  height: 96px;

  padding: 0 6%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: #071a2d;

  border-bottom: 1px solid rgba(197, 153, 75, 0.7);
}

.project-logo-v3 {
  width: 235px;
  height: auto;
  display: block;
}

.project-nav-v3 {
  display: flex;
  align-items: center;

  gap: 38px;
}

.project-nav-v3 a {
  font-family: "Manrope", sans-serif;

  font-size: 13px;
  font-weight: 400;

  letter-spacing: 0.8px;

  color: #f2ede5;

  text-decoration: none;

  transition: 0.25s ease;
}

.project-nav-v3 a:hover {
  color: #c69a4a;
}

.project-nav-button-v3 {
  padding: 13px 22px;

  border: 1px solid #c69a4a;

  color: #c69a4a !important;
}


/* =========================
   HERO
========================= */

.project-hero-v3 {
  display: grid;

  grid-template-columns: 1.05fr 0.95fr;

  min-height: 610px;

  background: #f4ede2;
}


/* =========================
   GAUCHE
========================= */

.project-left-v3 {
  padding: 62px 6.5% 50px;
}


.project-eyebrow-v3 {
  display: block;

  margin-bottom: 20px;

  font-family: "Manrope", sans-serif;

  font-size: 12px;
  font-weight: 500;

  letter-spacing: 3px;

  color: #b38539;
}


.project-left-v3 h1 {
  margin: 0;

  font-family: "Cormorant Garamond", serif;

  font-size: 72px;
  font-weight: 500;

  line-height: 0.94;

  letter-spacing: -1.4px;

  color: #122438;
}


.project-gold-line-v3 {
  width: 54px;
  height: 1px;

  margin: 24px 0 24px;

  background: #b88a3d;
}


.project-text-v3 {
  max-width: 610px;

  margin-bottom: 36px;

  font-family: "Manrope", sans-serif;

  font-size: 15px;

  line-height: 1.65;

  color: #42505d;
}


/* =========================
   3 ÉTAPES
========================= */

.project-steps-v3 {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  max-width: 700px;

  margin-bottom: 34px;
}


.project-step-v3 {
  text-align: center;

  padding: 0 22px;

  border-right: 1px solid rgba(181, 136, 60, 0.24);
}


.project-step-v3:first-child {
  padding-left: 0;
}


.project-step-v3:last-child {
  padding-right: 0;

  border-right: none;
}


.project-step-number-v3 {
  width: 58px;
  height: 58px;

  margin: 0 auto 15px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid #b5873a;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.2);

  font-family: "Cormorant Garamond", serif;

  font-size: 17px;

  color: #966c2b;
}


.project-step-v3 h3 {
  margin: 0 0 8px;

  font-family: "Cormorant Garamond", serif;

  font-size: 24px;

  font-weight: 500;

  color: #17293d;
}


.project-step-v3 p {
  margin: 0;

  font-family: "Manrope", sans-serif;

  font-size: 12px;

  line-height: 1.55;

  color: #6b737b;
}


/* =========================
   BOUTON COMMENCER
========================= */

.project-start-v3 {
  width: 100%;

  max-width: 485px;

  padding: 18px 25px;

  display: flex;

  justify-content: space-between;
  align-items: center;

  background: #071a2d;

  border: 1px solid #b98a3c;

  color: #c89b4c;

  font-family: "Manrope", sans-serif;

  font-size: 13px;
  font-weight: 600;

  letter-spacing: 1.8px;

  text-decoration: none;

  box-shadow:
    0 9px 24px rgba(19, 31, 45, 0.13);

  transition: 0.25s ease;
}


.project-start-v3:hover {
  transform: translateY(-2px);

  background: #0b233b;
}


.project-arrow-v3 {
  font-size: 23px;
}


/* =========================
   VOIR D'ABORD LES PROJETS
========================= */

.project-see-v3 {
  display: block;

  width: fit-content;

  margin: 22px auto 0;

  padding-bottom: 5px;

  border-bottom: 1px solid #b28740;

  font-family: "Manrope", sans-serif;

  font-size: 12px;
  font-weight: 500;

  letter-spacing: 1.3px;

  color: #1c2a3a;

  text-decoration: none;

  transition: 0.25s ease;
}


.project-see-v3:hover {
  color: #b28740;
}


/* =========================
   RASSURANCE
========================= */

.project-reassurance-v3 {
  margin-top: 34px;

  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 13px;

  font-family: "Manrope", sans-serif;

  font-size: 11px;

  color: #766c5d;
}


.project-dot-v3 {
  color: #b4863c;
}


/* =========================
   DROITE
========================= */

.project-right-v3 {
  position: relative;

  padding: 32px 5% 32px 0;
}


.project-photo-v3 {
  width: 100%;
  height: 100%;

  min-height: 530px;

  background-image: url("projet-photo.png");

  background-size: cover;

  background-position: center;

  border-radius: 22px;

  box-shadow:
    0 14px 35px rgba(21, 29, 38, 0.12);
}


/* =========================
   CITATION
========================= */

.project-quote-v3 {
  position: absolute;

  right: 9%;
  bottom: 10px;

  width: 350px;

  padding: 22px 28px;

  background: rgba(250, 247, 241, 0.96);

  border-radius: 9px;

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.12);
}


.project-quote-mark-v3 {
  display: block;

  font-family: Georgia, serif;

  font-size: 44px;

  line-height: 0.7;

  color: #b4863e;
}


.project-quote-v3 p {
  margin: 12px 0 12px;

  font-family: "Cormorant Garamond", serif;

  font-size: 22px;

  line-height: 1.18;

  color: #33404d;
}


.project-quote-line-v3 {
  width: 40px;
  height: 1px;

  background: #b4863e;
}


/* =========================
   ENGAGEMENT
========================= */

.project-engagement-v3 {
  padding: 48px 6% 80px;

  background: #faf6ef;
}


.project-engagement-title-v3 {
  text-align: center;

  margin-bottom: 35px;
}


.project-engagement-title-v3 span {
  font-family: "Manrope", sans-serif;

  font-size: 11px;

  letter-spacing: 2.5px;

  color: #b7893d;
}


.project-engagement-title-v3 h2 {
  margin: 10px 0 0;

  font-family: "Cormorant Garamond", serif;

  font-size: 35px;

  font-weight: 500;

  color: #17273a;
}


/* =========================
   CARTES ENGAGEMENT
========================= */

.project-engagement-grid-v3 {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;

  max-width: 1300px;

  margin: 0 auto;
}


.project-engagement-card-v3 {
  min-height: 180px;

  padding: 28px;

  display: flex;

  gap: 20px;

  background: rgba(255, 255, 255, 0.55);

  border: 1px solid rgba(190, 150, 84, 0.17);

  border-radius: 8px;

  box-shadow:
    0 8px 24px rgba(37, 29, 18, 0.05);
}


.project-engagement-icon-v3 {
  min-width: 50px;
  height: 50px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #f0e5d4;

  color: #b78638;

  font-family: "Cormorant Garamond", serif;

  font-size: 17px;
}


.project-engagement-card-v3 h3 {
  margin: 0 0 10px;

  font-family: "Manrope", sans-serif;

  font-size: 12px;

  line-height: 1.6;

  letter-spacing: 0.8px;

  color: #172638;
}


.project-engagement-card-v3 p {
  margin: 0;

  font-family: "Manrope", sans-serif;

  font-size: 12px;

  line-height: 1.6;

  color: #5e6670;
}


/* =========================
   TABLETTE
========================= */

@media (max-width: 950px) {

  .project-hero-v3 {
    grid-template-columns: 1fr;
  }

  .project-right-v3 {
    padding: 20px;
  }

  .project-photo-v3 {
    min-height: 450px;
  }

  .project-engagement-grid-v3 {
    grid-template-columns: 1fr;
  }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 650px) {

  .project-navbar-v3 {
    height: 78px;

    padding: 0 20px;
  }

  .project-logo-v3 {
    width: 170px;
  }

  .project-nav-v3 a:not(.project-nav-button-v3) {
    display: none;
  }

  .project-nav-button-v3 {
    padding: 10px 14px;
  }

  .project-left-v3 {
    padding: 44px 28px;
  }

  .project-left-v3 h1 {
    font-size: 54px;
  }

  .project-steps-v3 {
    grid-template-columns: 1fr;

    gap: 28px;
  }

  .project-step-v3 {
    padding: 0;

    border-right: 0;
  }

  .project-start-v3 {
    max-width: none;
  }

  .project-see-v3 {
    margin-left: 0;
  }

  .project-reassurance-v3 {
    line-height: 1.8;
  }

  .project-quote-v3 {
    position: relative;

    right: auto;
    bottom: auto;

    width: calc(100% - 30px);

    margin: -80px auto 20px;
  }

}