:root{
  --navy:#040a36;
  --navy-2:#08114a;
  --text:#111111;
  --muted:#747474;
  --line:#e8e8e8;
  --bg:#f6f6f6;
  --white:#ffffff;
}
body,
input,
select,
textarea,
button {
  font-family: 'Carla Sans', sans-serif;
}
*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:'Montserrat', sans-serif !important;
  color:var(--text);
  background:var(--bg);
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
  color:inherit;
}

button,
input,
textarea,
select{
  font:inherit;
}

.container{
  width:min(1120px, 92%);
  margin:0 auto;
}

.section{
  padding:56px 0;
}

.section-title{
  margin:0 0 34px;
  text-align:center;
   font-family:'Montserrat', sans-serif !important;
  font-size:38px;
  font-weight:500;
  letter-spacing:.02em;
  text-transform:uppercase;
}

.left-title{
  text-align:left;
}

.section-title-light{
  color:#fff;
}

/* HERO */
.hero{
  position:relative;
  min-height:760px;
  color:#fff;
  overflow:hidden;
  width:100%;
}

.hero-slider{
  position:absolute;
  inset:0;
  z-index:0;
}

.hero-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  opacity:0;
  transition:opacity .6s ease;
  transform:scale(1.02);
}

.hero-slide.active{
  opacity:1;
}

.hero-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(to bottom, rgba(4,10,54,.24), rgba(4,10,54,.22));
}

.hero-inner{
  position:relative;
  z-index:2;
  min-height:760px;
}


.topbar.scrolled {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, 92%);
  z-index: 9999;
  padding-top: 22px;
  padding-bottom: 10px;
}
.topbar{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  padding-top:22px;
  position:relative;
  z-index:3;
}

.topbar.scrolled::before {
  content: "";
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  z-index: -1;
}

.topbar.scrolled .menu a {
  color: #111111;
}
.topbar .menu a:hover {
  color: #c6a46a;
}

.topbar.scrolled .menu a:hover {
  color: #c6a46a;
}



.logo-wrap{
  line-height:1;
}

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

.site-logo {
  width: 105px;
  height: auto;
  display: block;
}
.hero,
.hero-inner {
  min-height: 100vh;
}


.menu a {
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #c6a46a;
}

.project-slide {
  filter: grayscale(100%);
  transition: transform 0.5s ease, filter 0.4s ease, opacity 0.4s ease;
}

.project-slide.project-pos-center {
  filter: grayscale(0%);
}

.project-slide:hover {
  filter: grayscale(0%);
}



.whatsapp-float {
  position: fixed !important;
  right: 20px !important;
  bottom: 20px !important;
  z-index: 99999 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  background: #25D366 !important;
  color: #ffffff !important;
  text-decoration: none !important;
  padding: 12px 18px !important;
  border-radius: 999px !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.20) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  transform: none !important;
  float: none !important;
  margin: 0 !important;
}

.whatsapp-float img {
  width: 22px !important;
  height: 22px !important;
  display: block !important;
}

.whatsapp-float span {
  display: inline-block !important;
  white-space: nowrap !important;
}

.whatsapp-float:hover {
  transform: translateY(-2px) !important;
}

@media (max-width: 767px) {
  .whatsapp-float {
    width: 56px !important;
    height: 56px !important;
    padding: 0 !important;
    justify-content: center !important;
    border-radius: 50% !important;
  }

  .whatsapp-float span {
    display: none !important;
  }

  .whatsapp-float img {
    width: 26px !important;
    height: 26px !important;
  }
}



.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer-site-logo{
  max-height:48px;
}

.menu{
  display:flex;
  gap:20px;
  list-style:none;
  margin:4px 0 0;
  padding:0;
}

.menu a{
  font-size:10px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#fff;
  opacity:.96;
}

.hero-content{
  max-width:430px;
  padding-top:155px;
  margin-left:70px;
  position:relative;
  z-index:3;
}

.hero-content h1{
  margin:0 0 18px;
  font-family:'Montserrat', sans-serif !important;
  font-size:50px;
  font-weight:400;
  line-height:.95;
  letter-spacing:.01em;
  text-transform:uppercase;
}
.hero-email-form{
  width:420px;
  max-width:100%;
  height:54px;
  margin:35px auto 0 auto;
  display:flex;
  align-items:center;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(255,255,255,.05);
  backdrop-filter:blur(4px);
}

.hero-email-form input{
  flex:1;
  height:100%;
  border:0;
  background:transparent;
  color:#fff;
  padding:0 22px;
  font-size:14px;
  outline:none;
}

.hero-email-form input::placeholder{
  color:rgba(255,255,255,.75);
}

.hero-email-form button{
  width:70px;
  height:100%;
  border:0;
  background:transparent;
  color:#fff;
  font-size:24px;
  cursor:pointer;
}
.hero-mini-text{
  margin:25px 0 14px 0;
  text-align:center;
  font-size:12px;
  letter-spacing:.22em;
  color:rgba(255,255,255,.95);
  text-transform:uppercase;
}
.hero-subtitle{
  margin:0 0 10px;
  font-size:8px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(255,255,255,.95);
}

.hero-form{
  display:flex;
  align-items:center;
  width:210px;
  height:24px;
  background:#fff;
}

.hero-form input{
  flex:1;
  height:100%;
  border:0;
  padding:0 10px;
  background:transparent;
  color:#222;
  font-size:10px;
  outline:none;
}

.hero-form input::placeholder{
  color:#999;
  letter-spacing:.1em;
}

.hero-form button{
  width:36px;
  height:100%;
  border:0;
  background:#fff;
  color:#111;
  font-size:18px;
  cursor:pointer;
}

.hero-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:40px;
  height:40px;
  border:0;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:22px;
  cursor:pointer;
  opacity:.95;
  z-index:4;
  transition:.2s ease;
}

.hero-arrow:hover{
  background:rgba(255,255,255,.18);
}

.hero-arrow-left{
  left:18px;
}

.hero-arrow-right{
  right:18px;
}

.hero-searchbar{
  position:absolute;
  left:50%;
  bottom:0;
  transform:translateX(-50%);
  display:flex;
  align-items:stretch;
  width:auto;
  max-width:none;
  margin:0;
  padding:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  overflow:visible;
  z-index:10;
}

.hero-search-field{
  width:170px;
  height:58px;
  background:#0b1833;
  color:#fff;
  border:0;
  border-right:1px solid rgba(255,255,255,.08);
  padding:0 38px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.15em;
  text-transform:uppercase;
  outline:none;
}

.hero-search-field:nth-of-type(2){
  background:#071029;
}
.hero-search-field:nth-of-type(3){
  background:#111834;
}

.hero-search-btn{
  height:72px;
  margin:0;
  border-radius:0;
  border:0;
  background:#a9bdc1;
  color:#fff;
  padding:0 40px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  cursor:pointer;
}

.hero-search-btn:hover {
  background: #c6a46a;
  color: #ffffff;
}
@media (max-width: 991px) {
  .topbar {
    padding: 16px 20px;
  }

  .hero-searchbar {
    flex-wrap: wrap;
    border-radius: 24px;
    padding: 14px;
    gap: 10px;
  }

  .hero-search-field {
    flex: 1 1 calc(50% - 10px);
    border-right: none;
    border: 1px solid #e3e3e3;
    border-radius: 12px;
    height: 52px;
  }

  .hero-search-btn {
    width: 100%;
    margin-left: 0;
    height: 52px;
  }
}

@media (max-width: 767px) {
  .hero-search-field {
    flex: 1 1 100%;
  }
}
/* ABOUT */
.about{
  background:#fff;
}

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:start;
}

.about-left h3{
  margin:0 0 14px;
  font-size:13px;
  font-weight:500;
}

.about-left p{
  margin:0;
  font-size:11px;
  line-height:1.8;
  color:#666;
}

.about-accordion{
  margin-top:16px;
}

.about-accordion details{
  border-bottom:1px solid var(--line);
  padding:8px 0;
}

.about-accordion summary{
  position:relative;
  list-style:none;
  cursor:pointer;
  font-size:11px;
  font-weight:600;
  padding-right:18px;
}

.about-accordion summary::-webkit-details-marker{
  display:none;
}

.about-accordion summary::after{
  content:"+";
  position:absolute;
  right:0;
  top:0;
  color:#666;
}

.about-accordion details[open] summary::after{
  content:"−";
}

.about-accordion details p{
  margin-top:10px;
  font-size:11px;
  line-height:1.8;
}

.video-label{
  margin-bottom:8px;
  font-size:10px;
  color:#666;
}

.video-thumb{
  width:100%;
  max-width:100%;
}.video-thumb video{
  width:100%;
  height:460px;
  object-fit:cover;
  display:block;
  border-radius:18px;
}.about-grid{
  align-items:center;
}
.footer-stats{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:55px;
  max-width:760px;
}

.footer-stat-top{
  display:flex !important;
  align-items:baseline !important;
  gap:8px;
  white-space:nowrap;
}

.footer-stat-top strong{
  display:inline-block !important;
  font-size:44px !important;
  line-height:1 !important;
  margin:0 !important;
}

.footer-plus{
  display:inline-block !important;
  font-size:18px !important;
}

.footer-unit{
  display:inline-block !important;
  font-size:13px !important;
}

.footer-stat-item > span{
  display:block;
  margin-top:8px;
  font-size:12px;
}
.president-long-text{
  max-width:920px;
}

.president-long-text p{
  max-width:760px;
  margin-left:30px;
  margin-bottom:14px;
}

.text-block h3{
  font-family:'Cormorant Garamond', serif;
  font-size:28px;
  color:var(--navy);
  margin-bottom:14px;
  text-transform:uppercase;
}
.villa-selector{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    margin:60px 0;
}

.villa-item{
    position:relative;
    width:260px;
    height:180px;
    overflow:hidden;
    cursor:pointer;
    transition:0.4s ease;
    background:#000;
}

.villa-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.6s ease;
}

.villa-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.15));
}

.villa-item h3{
    position:absolute;
    bottom:22px;
    left:22px;
    color:#fff;
    font-size:22px;
    font-weight:300;
    letter-spacing:2px;
    z-index:2;
}

.villa-item:hover img{
    transform:scale(1.08);
}

.villa-item:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,0.18);
}

.villa-item.active{
    outline:2px solid #8b5e3c;
    outline-offset:6px;
}

.plan-card img{
    width:100%;
    height:420px;
    object-fit:cover;
}
/* STATS BAND */
.stats-band{
  background:rgb(12 19 43 / var(--tw-bg-opacity, 1));
  padding:60px 0 55px;
  text-align:center;
}

.stats-band .section-title{
  color:#ffffff !important;
  font-family:'Carla Sans', sans-serif !important;
  font-size:28px !important;
  font-weight:500 !important;
  letter-spacing:.16em !important;
  text-transform:uppercase;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

.stat-card{
  text-align:center;
}

.stat-line{
  display:flex;
  align-items:flex-end;
  justify-content:center;
  gap:8px;
  margin-bottom:10px;
}

.stat-plus{
  color:#fff;
  font-size:24px;
  position:relative;
  top:-3px;
}

.stat-number{
  color:#fff;
  font-size:52px;
  font-family:'Montserrat', sans-serif !important;
  line-height:1;
}

.stat-unit{
  color:#fff;
  font-size:18px;
  position:relative;
  top:-4px;
}

.stat-card p{
  margin:0;
  color:rgba(255,255,255,.9);
  font-size:15px;
}




/* PROJECTS */
.projects{
  background:#fff;
}

.projects-showcase-full{
  width:100%;
  margin-bottom:42px;
}

.projects-showcase{
  width:100%;
  position:relative;
  overflow:hidden;
}

.project-track{
  position:relative;
  width:100%;
  height:430px;
}

.project-slide{
  position:absolute;
  top:0;
  overflow:hidden;
  transition:
    left .55s ease,
    width .55s ease,
    height .55s ease,
    transform .55s ease,
    opacity .55s ease,
    filter .55s ease;
}

.project-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s ease;
    filter:grayscale(100%);
}

/* gauche */
.project-pos-left{
  left:0;
  width:22.5%;
  height:430px;
  opacity:1;
  z-index:1;
}

.project-pos-center img{
    filter:none !important;
    transform:scale(1.02);
}
.partners-track img{
    height:70px; /* adapte selon tes logos */
    width:auto;
    filter:grayscale(100%);
    opacity:.65;
    transition:all .35s ease;
}

.partners-track img:hover{
    filter:grayscale(0%);
    opacity:1;
    transform:translateY(-4px);
}
.partners-track img{
    filter: grayscale(100%) !important;
    -webkit-filter: grayscale(100%) !important;
    opacity: .65;
    transition: all .35s ease;
}

.partners-track img:hover{
    filter: grayscale(0%) !important;
    -webkit-filter: grayscale(0%) !important;
    opacity: 1;
    transform: scale(1.05);
}
.project-pos-left img,
.project-pos-right img{
    filter:grayscale(100%) brightness(0.6);
}
.projects-description{
  width:min(820px,92%);
  margin:0 auto 45px auto;
  text-align:center;
}

.projects-description p{
  font-size:15px;
  line-height:1.8;
  color:#555;
  margin:0 auto 18px;
}

.projects-description ul{
  list-style:none;
  padding:0;
  margin:22px auto;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px 30px;
  max-width:700px;
}

.projects-description li{
  font-size:15px;
  color:#222;
}

.projects-description li::before{
  content:"•";
  margin-right:8px;
  color:rgb(12 19 43 / var(--tw-bg-opacity, 1));
}
/* centre */
.project-pos-center{
  left:24.5%;
  width:52%;
  height:430px;
  opacity:1;
  z-index:3;
}

.project-pos-center img{
  filter:none;
}

/* droite */
.project-pos-right{
  left:78%;
  width:22%;
  height:430px;
  opacity:1;
  z-index:1;
}

.project-pos-right img{
  filter:saturate(.88) brightness(.94);
}

/* caché */
.project-hidden{
  left:50%;
  width:0;
  height:430px;
  opacity:0;
  z-index:0;
  pointer-events:none;
}

.project-caption{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top:8px;
  font-size:9px;
  color:#111;
  width:min(1120px, 92%);
  margin-left:auto;
  margin-right:auto;
}

.caption-arrows{
  display:flex;
  gap:6px;
}

.caption-arrows button{
  border:0;
  background:transparent;
  cursor:pointer;
  font-size:16px;
  line-height:1;
  padding:2px 6px;
}

/* responsive */
@media (max-width: 900px){
  .project-track{
    height:320px;
  }

  .project-pos-left,
  .project-pos-right{
    display:none;
  }

  .project-pos-center{
    left:0;
    width:100%;
    height:320px;
  }

  .project-hidden{
    height:320px;
  }
}

.project-caption{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top:8px;
  font-size:9px;
  color:#111;
  width:min(1120px, 92%);
  margin-left:auto;
  margin-right:auto;
}

.caption-arrows{
  display:flex;
  gap:6px;
}

.caption-arrows button{
  border:0;
  background:transparent;
  cursor:pointer;
  font-size:13px;
}

.project-cards{
  display:grid;
  gap:30px;
  margin:0 auto;
}

.project-cards-two{
  grid-template-columns:repeat(3, minmax(260px, 340px));
  justify-content:center;
  max-width:1200px;
  gap:35px;
}

.project-card{
  text-align:center;
}

.project-card img{
  width:100%;
  height:170px;
  object-fit:cover;
  margin-bottom:16px;
}

.project-card h3{
  margin:0 0 8px;
  font-family:'Montserrat', sans-serif !important;
  font-size:26px;
  font-weight:500;
  text-transform:uppercase;
}

.project-card p{
  margin:0 0 14px;
  font-size:11px;
  line-height:1.7;
  color:#666;
}

.btn-small{
  display:inline-block;
  background:var(--navy);
  color:#fff;
  font-size:9px;
  letter-spacing:.12em;
  padding:7px 14px;
  text-transform:uppercase;
}

/* MEDIA / NEWSLETTER */
.media-news{
  background:#fff;
  padding-top:26px;
}

.media-news-grid{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:56px;
  align-items:start;
}

.media-accordion details{
  border:1px solid var(--line);
  margin-bottom:8px;
  background:#fff;
}

.media-accordion summary{
  list-style:none;
  cursor:pointer;
  padding:10px 14px;
  font-size:10px;
  position:relative;
}

.media-accordion summary::-webkit-details-marker{
  display:none;
}

.media-accordion summary::after{
  content:"+";
  position:absolute;
  right:14px;
  top:10px;
  color:#777;
}

.media-accordion details[open] summary::after{
  content:"−";
}

.media-accordion p{
  margin:0;
  padding:0 14px 12px;
  font-size:10px;
  color:#666;
  line-height:1.7;
}

.newsletter-card{
  border:1px solid #e6e6e6;
  padding:18px;
  min-height:150px;
  position:relative;
}

.newsletter-card p{
  margin:0 0 18px;
  font-size:10px;
  color:#666;
}

.newsletter-card input{
  width:100%;
  border:0;
  border-bottom:1px solid #ddd;
  padding:10px 0;
  font-size:10px;
  outline:none;
}

.newsletter-card button{
  position:absolute;
  right:16px;
  top:62px;
  border:0;
  background:transparent;
  font-size:16px;
  cursor:pointer;
  color:#222;
}

/* CONTACT */
.contact{
  background:#fff;
  padding-top:20px;
}

.contact-grid{
  display:grid;
  grid-template-columns:1.05fr 1fr;
  gap:40px;
}

.map-label,
.form-title{
  margin-bottom:8px;
  font-size:10px;
  font-weight:600;
}

.map-box img{
  width:100%;
  height:170px;
  object-fit:cover;
  filter:grayscale(100%);
}

.contact-infos{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  margin-top:18px;
}

.contact-infos h4{
  margin:0 0 8px;
  font-size:11px;
}

.contact-infos p{
  margin:0 0 5px;
  font-size:10px;
  line-height:1.8;
  color:#555;
}

.contact-form{
  padding-top:16px;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-bottom:16px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  border:0;
  border-bottom:1px solid #ddd;
  padding:10px 0;
  outline:none;
  font-size:10px;
  background:transparent;
}

.contact-form textarea{
  min-height:120px;
  resize:vertical;
  margin-bottom:20px;
}

.btn-rounded{
  border:0;
  border-radius:999px;
  background:var(--navy);
  color:#fff;
  font-size:9px;
  letter-spacing:.12em;
  padding:10px 18px;
  text-transform:uppercase;
  cursor:pointer;
}

/* PARTNERS */
/* SLIDER LOGOS */
.partners-slider{
  width:100vw;
  margin-left:calc(50% - 50vw);
  overflow:hidden;
  padding:35px 0;
  background:#fff;
}

.partners-track{
  display:flex;
  align-items:center;
  gap:80px;
  width:max-content;
  animation:scrollLogos 22s linear infinite;
  padding-left:0;
}

.partners-track img{
  height:46px;
  width:auto;
  flex:0 0 auto;
  opacity:.75;
  transition:.3s ease;
}

.partners-track img:hover{
  opacity:1;
  transform:scale(1.05);
}

@keyframes scrollLogos{
  from{
    transform:translateX(100vw);
  }
  to{
    transform:translateX(-100%);
  }
}

.partners-slider:hover .partners-track{
  animation-play-state:paused;
}
.green-box{
  width:34px;
  height:34px;
  background:#6ea62c;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:Inter, sans-serif;
  font-size:9px;
}

/* FOOTER */
.footer{
  position:relative;
  background:rgb(12 19 43 / var(--tw-bg-opacity, 1));
  color:#fff;
  margin-top:30px;
  padding:34px 0 70px;
}

.footer-top{
  display:flex;
  justify-content:space-between;
  gap:40px;
  padding-bottom:24px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.footer-menu{
  list-style:none;
  padding:0;
  margin:18px 0 14px;
}

.footer-menu li{
  margin-bottom:7px;
}

.footer-menu a{
  font-size:10px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(255,255,255,.9);
}

.copyright{
  margin:16px 0 0;
  font-size:10px;
  color:rgba(255,255,255,.7);
}

.footer-right{
  text-align:right;
  padding-top:10px;
}

.footer-right p{
  margin:0 0 6px;
  font-size:11px;
  color:rgba(255,255,255,.9);
}

.socials{
  margin-top:10px;
  display:flex;
  justify-content:flex-end;
  gap:10px;
}

.socials span{
  width:24px;
  height:24px;
  border:1px solid rgba(255,255,255,.25);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:10px;
}

.footer-bottom{
  padding-top:28px;
}

.footer-bottom .section-title{
  font-size:30px;
  margin-bottom:20px;
}

.footer-stats{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:30px;
  max-width:560px;
}

.footer-stats strong{
  display:block;
  font-family:'Montserrat', sans-serif !important;
  font-size:38px;
  font-weight:500;
  line-height:1;
  margin-bottom:4px;
}

.footer-stats span{
  display:block;
  font-size:10px;
  color:rgba(255,255,255,.75);
}

.back-top{
  position:absolute;
  right:28px;
  bottom:24px;
  width:32px;
  height:32px;
  border:1px solid rgba(255,255,255,.25);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:16px;
  background:rgba(255,255,255,.08);
}

/* RESPONSIVE */
@media (max-width: 1100px){
  .hero-content{
    margin-left:20px;
  }

  .hero-searchbar{
    min-width:0;
    width:92%;
  }

  .projects-showcase{
    grid-template-columns:.7fr 2fr .7fr;
  }
}

@media (max-width: 900px){
  .menu{
    display:none;
  }

  .hero{
    min-height:auto;
  }

  .hero-inner{
    min-height:auto;
    padding-bottom:110px;
  }

  .hero-content{
    padding-top:120px;
    margin-left:0;
    max-width:100%;
  }

  .hero-content h1{
    font-size:46px;
  }

  .hero-searchbar{
    position:static;
    transform:none;
    min-width:0;
    width:100%;
    flex-wrap:wrap;
    justify-content:flex-start;
    gap:12px;
    margin-top:40px;
    padding-bottom:20px;
  }

  .hero-search-field,
  .hero-search-btn{
    width:100%;
  }

  .about-grid,
  .media-news-grid,
  .contact-grid,
  .stats-grid,
  .contact-infos,
  .form-row{
    grid-template-columns:1fr;
  }

  .projects-showcase{
    grid-template-columns:1fr;
  }

  .side-project{
    display:none;
  }

  .center-project img{
    height:320px;
  }

  .project-cards-two{
    grid-template-columns:1fr;
    max-width:360px;
  }

  .footer-top,
  .partners{
    flex-direction:column;
    align-items:flex-start;
  }

  .partner-logos{
    justify-content:flex-start;
    flex-wrap:wrap;
    gap:20px;
  }

  .footer-right{
    text-align:left;
  }

  .socials{
    justify-content:flex-start;
  }

  .footer-stats{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width: 560px){
  .section{
    padding:42px 0;
  }

  .section-title{
    font-size:28px;
  }

  .hero-content h1{
    font-size:38px;
  }

  .hero-form{
    width:100%;
    max-width:260px;
  }

  .hero-arrow{
    width:34px;
    height:34px;
    font-size:18px;
  }

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

/* =========================================================
   OVERRIDES PAGE D'ACCUEIL - STYLE PHOTOCOPIE MOCKUP
   Ajouté sans supprimer les autres blocs du site
========================================================= */

/* HERO général */
.hero{
  min-height:100vh !important;
  height:100vh !important;
  width:100% !important;
  position:relative !important;
  overflow:hidden !important;
  color:#fff !important;
}

.hero-inner{
  min-height:100vh !important;
  height:100vh !important;
  position:relative !important;
  z-index:3 !important;
  display:block !important;
  padding-bottom:0 !important;
}

.hero-slide{
  background-size:cover !important;
  background-position:center center !important;
  transform:none !important;
}

.hero-overlay{
  position:absolute !important;
  inset:0 !important;
  z-index:1 !important;
  background:
    linear-gradient(to bottom, rgba(0,35,55,.42), rgba(0,35,55,.58)),
    rgba(0,35,55,.30) !important;
}

/* Header / Menu */
.topbar{
  width:min(920px,92%) !important;
  margin:0 auto !important;
  padding-top:30px !important;
  padding-left:0 !important;
  padding-right:0 !important;
  display:flex !important;
  align-items:flex-start !important;
  justify-content:space-between !important;
  position:relative !important;
  z-index:10 !important;
}

.topbar.scrolled{
  position:fixed !important;
  top:0 !important;
  left:50% !important;
  transform:translateX(-50%) !important;
  width:min(920px,92%) !important;
  padding-top:18px !important;
  padding-bottom:12px !important;
}

.topbar.scrolled::before{
  background:rgb(12 19 43 / var(--tw-bg-opacity, 1)) !important;
  backdrop-filter:blur(8px) !important;
  -webkit-backdrop-filter:blur(8px) !important;
  box-shadow:0 8px 25px rgba(0,0,0,.15) !important;
}

.topbar.scrolled .menu a{
  color:#fff !important;
}

.site-logo{
  width:104px !important;
  height:auto !important;
  display:block !important;
}

.menu{
  display:flex !important;
  gap:38px !important;
  list-style:none !important;
  margin:10px 0 0 !important;
  padding:0 !important;
  align-items:center !important;
}

/* cacher MÉDIAS pour avoir le même menu que le mockup */
.menu li:nth-child(4){
  display:none !important;
}

.menu a{
  color:#fff !important;
  font-size:10px !important;
  font-weight:700 !important;
  letter-spacing:.13em !important;
  text-transform:uppercase !important;
  opacity:1 !important;
}

.menu a:hover{
  color:#d7e4e0 !important;
}

/* Texte au centre du slide */
.hero-content{
  position:absolute !important;
  top:49% !important;
  left:50% !important;
  transform:translate(-50%,-50%) !important;
  max-width:760px !important;
  width:90% !important;
  margin:0 !important;
  padding:0 !important;
  text-align:center !important;
  z-index:8 !important;
}

.hero-content h1{
  margin:0 0 26px !important;
  font-family:'Carla Sans', sans-serif !important;
  font-size:56px !important;
  font-weight:300 !important;
  line-height:1.08 !important;
  letter-spacing:.085em !important;
  text-transform:uppercase !important;
  color:#fff !important;
}

/* Texte newsletter sous le titre */


/* Si tu ajoutes le petit formulaire email dans hero-content */
.hero-mail{
  width:420px;
  max-width:100%;
  height:46px;
  margin:0 auto;
  display:flex;
  align-items:center;
  border:1px solid rgba(255,255,255,.45);
  background:rgba(255,255,255,.04);
}

.hero-mail input{
  flex:1;
  height:100%;
  border:0;
  outline:0;
  background:transparent;
  color:#fff;
  padding:0 18px;
  font-size:12px;
}

.hero-mail input::placeholder{
  color:rgba(255,255,255,.72);
}

.hero-mail button{
  width:58px;
  height:100%;
  border:0;
  background:transparent;
  color:#fff;
  font-size:22px;
  cursor:pointer;
}

/* Flèches slider */
.hero-arrow{
  position:absolute !important;
  top:50% !important;
  transform:translateY(-50%) !important;
  width:44px !important;
  height:44px !important;
  border:0 !important;
  border-radius:0 !important;
  background:transparent !important;
  color:#fff !important;
  font-size:0 !important;
  cursor:pointer !important;
  z-index:9 !important;
  opacity:1 !important;
}

.hero-arrow::before{
  font-size:42px;
  font-weight:200;
  line-height:1;
  color:#fff;
}

.hero-arrow-left{
  left:32px !important;
}

.hero-arrow-right{
  right:32px !important;
}

.hero-arrow-left::before{
  content:"‹";
}

.hero-arrow-right::before{
  content:"›";
}

.hero-arrow:hover{
  background:transparent !important;
  opacity:.75 !important;
}

/* Search bar en bas du slide */
.hero-searchbar{
  position:absolute !important;
  left:50% !important;
  bottom:0 !important;
  transform:translateX(-50%) !important;
  width:auto !important;
  max-width:none !important;
  margin:0 !important;
  padding:0 !important;
  border-radius:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  display:flex !important;
  align-items:stretch !important;
  justify-content:center !important;
  overflow:visible !important;
  z-index:9 !important;
}

.hero-search-field{
  flex:none !important;
  width:155px !important;
  height:58px !important;
  border:0 !important;
  border-right:1px solid rgba(255,255,255,.08) !important;
  border-radius:0 !important;
  outline:0 !important;
  background:#09152f !important;
  color:#fff !important;
  padding:0 34px !important;
  font-size:9px !important;
  font-weight:700 !important;
  letter-spacing:.15em !important;
  text-transform:uppercase !important;
  appearance:none !important;
  -webkit-appearance:none !important;
  -moz-appearance:none !important;
  cursor:pointer !important;
}

.hero-search-field option{
  color:#111 !important;
  background:#fff !important;
}

.hero-search-btn{
  flex:none !important;
  height:58px !important;
  min-width:130px !important;
  margin:0 !important;
  border:0 !important;
  border-radius:0 !important;
  background:#d7e4e0 !important;
  color:#263c42 !important;
  padding:0 34px !important;
  font-size:9px !important;
  font-weight:700 !important;
  letter-spacing:.15em !important;
  text-transform:uppercase !important;
  cursor:pointer !important;
  white-space:nowrap !important;
}

.hero-search-btn:hover{
  background:#ffffff !important;
  color:#09152f !important;
}

/* Responsive hero mockup */
@media (max-width: 991px){
  .topbar{
    width:92% !important;
    padding-top:22px !important;
    align-items:center !important;
  }

  .menu{
    gap:18px !important;
  }

  .menu a{
    font-size:9px !important;
  }

  .hero-content h1{
    font-size:44px !important;
  }

  .hero-searchbar{
    width:92% !important;
    flex-wrap:wrap !important;
    bottom:20px !important;
  }

  .hero-search-field{
    width:33.333% !important;
    height:58px !important;
    padding:0 18px !important;
  }

  .hero-search-btn{
    width:100% !important;
    height:56px !important;
  }
}

@media (max-width: 767px){
  .hero{
    height:100vh !important;
    min-height:680px !important;
  }

  .hero-inner{
    height:100vh !important;
    min-height:680px !important;
  }

  .topbar{
    justify-content:center !important;
  }

  .menu{
    display:none !important;
  }

  .site-logo{
    width:100px !important;
  }

  .hero-content{
    top:44% !important;
  }

  .hero-content h1{
    font-size:34px !important;
    letter-spacing:.06em !important;
  }

  .hero-content::after{
    font-size:10px !important;
    letter-spacing:.12em !important;
  }

  .hero-mail{
    height:42px !important;
    width:330px !important;
  }

  .hero-arrow-left{
    left:12px !important;
  }

  .hero-arrow-right{
    right:12px !important;
  }

  .hero-searchbar{
    position:absolute !important;
    bottom:15px !important;
    width:90% !important;
    display:flex !important;
    flex-direction:column !important;
  }

  .hero-search-field,
  .hero-search-btn{
    width:100% !important;
    height:50px !important;
  }
}
.hero-video-wrap{
  position:absolute;
  inset:0;
  z-index:0;
  overflow:hidden;
}

.hero-video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.hero-slider{
  display:none;
}

.hero-arrow{
  display:none !important;
}

.about-heading-premium{
  text-align:center;
  margin-bottom:50px;
}

.about-heading-premium span{
  display:block;
  font-family:'Montserrat',sans-serif;
  color:rgb(12 19 43 / var(--tw-bg-opacity, 1));
  font-size:12px;
  font-weight:500;
  letter-spacing:.22em;
  text-transform:uppercase;
  margin-bottom:12px;
}

.about-heading-premium h2{
   font-family:'Carla Sans','Carla Sans Semibold',sans-serif !important;
  font-size:58px;
  font-weight:500;
  letter-spacing:.06em;
  color:#050815;
  margin:0;
}

.about-premium-grid{
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:start;
}

.about-title-row{
  display:flex;
  align-items:flex-start;
  gap:18px;
  margin-bottom:16px;
}

.about-icon{
  width:50px;
  height:50px;
  border:1px solid rgb(12 19 43 / var(--tw-bg-opacity, 1));
  color:rgb(12 19 43 / var(--tw-bg-opacity, 1));
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  flex-shrink:0;
}

.about-premium-left h3{
  font-family:'Montserrat', sans-serif !important;
  font-size:28px;
  font-weight:500;
  color:#050815;
  margin:0 0 4px;
}

.about-premium-left h4{
  font-family:'Montserrat',sans-serif;
  font-size:15px;
  font-weight:500;
  color:rgb(12 19 43 / var(--tw-bg-opacity, 1));
  margin:4px 0 0;
}

.gold-line{
  width:42px;
  height:1px;
  background:rgb(12 19 43 / var(--tw-bg-opacity, 1));
  margin:20px 0 26px;
}

.about-premium-left p{
  font-family:'Montserrat',sans-serif;
  font-size:14px;
  line-height:1.65;
  font-weight:400;
  color:#4f5565;
  margin:0 0 16px;
}

.about-more-text{
  display:none;
}

.about-more-text.show{
  display:block;
}

.about-more-btn{
  border:0;
  background:transparent;
  font-family:'Montserrat',sans-serif;
  color:rgb(12 19 43 / var(--tw-bg-opacity, 1));
  font-size:11px;
  font-weight:600;
  letter-spacing:.16em;
  text-transform:uppercase;
  cursor:pointer;
  margin:2px 0 18px;
  padding:0;
}

.premium-accordion details{
  border-bottom:1px solid #e5e0d8;
  padding:12px 0;
}

.premium-accordion details:not([open]) p{
  display:none;
}
.premium-accordion summary{
  font-family:'Montserrat',sans-serif;
  font-size:13px;
  font-weight:600;
  letter-spacing:.04em;
  color:#050815;
}

.premium-accordion details p{
  font-family:'Montserrat',sans-serif;
  font-size:13px;
  line-height:1.9;
  color:#5a6272;
}

.video-frame-rect{
  width:100%;
  aspect-ratio:16/9;
  overflow:hidden;
  border-radius:18px;
  box-shadow:0 18px 45px rgba(0,0,0,.12);
}

.video-frame-rect video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.about-premium-video .video-label{
  font-family:'Montserrat',sans-serif;
  color:#777;
  font-size:11px;
  margin-bottom:10px;
}
.video-frame-rect{
  margin-top:6px;
}
@media(max-width:900px){
  .about-premium-grid{
    grid-template-columns:1fr;
    gap:40px;
  }

  .about-heading-premium h2{
    font-size:36px;
  }

  .about-premium-left h3{
    font-size:26px;
  }

  .about-premium-left p{
    font-size:13px;
  }
}

.projects{
  position:relative;
  z-index:1;
  overflow:hidden;
}

.premium-project-text{
  max-width:850px;
  margin:0 auto 55px;
  text-align:center;
}

.projects-kicker{
  display:block;
  font-family:'Montserrat',sans-serif;
  font-size:11px;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:rgb(12 19 43 / var(--tw-bg-opacity, 1));
  margin-bottom:12px;
}

.premium-project-text h3{
  font-family:"Cormorant Garamond",serif;
  font-size:34px;
  font-weight:500;
  color:#050815;
  margin:0 0 18px;
}

.premium-project-text p{
  font-family:'Montserrat',sans-serif;
  font-size:14px;
  line-height:1.8;
  color:#4f5565;
  margin:0 auto 22px;
  max-width:760px;
}

.project-points{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin:28px auto;
}

.project-points span{
  font-family:'Montserrat',sans-serif;
  font-size:12px;
  font-weight:600;
  color:#050815;
  border:1px solid #e4ded4;
  padding:13px 10px;
  background:#fff;
}

.project-track{
  z-index:1;
}

.project-slide{
  z-index:1;
}

.project-pos-center{
  z-index:2 !important;
}

.topbar{
  z-index:9999 !important;
}

.topbar.scrolled{
  z-index:99999 !important;
}

@media(max-width:900px){
  .project-points{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:520px){
  .project-points{
    grid-template-columns:1fr;
  }

  .premium-project-text h3{
    font-size:28px;
  }
}
/* FORCE CARLA SUR LE TITRE QUI SOMMES-NOUS */
.about-heading-premium h2,
h2.font-carla,
.text-2xl.font-carla{
  font-family:'Carla Sans','Carla Sans Semibold',sans-serif !important;
  font-size:30px !important;
  font-weight:600 !important;
  letter-spacing:.16em !important;
  color:rgb(12 19 43 / var(--tw-bg-opacity, 1)) !important;
  text-transform:uppercase !important;
}