/* --- BASE & VARIABLES --- */
html, body{
  margin: 0;
  padding: 0;
}


:root{
  --bg-900:#0b0f13;
  --bg-800:#10161c;
  --card:#141c23;
  --text:#e9eef5;
  --muted:#aab4c0;
  --accent:#f6b10a;
  --accent-2:#ffd76a;
  --border:rgba(255,255,255,.08);
  --shadow: 0 18px 45px rgba(0,0,0,.45);
  --radius: 18px;
  --cta: #f4814f;
  --cta-hover: #ff9a73;
}

*{box-sizing:border-box}
html,body{height:100%; overflow-x: hidden;}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: var(--bg-900);
  color: var(--text);
  padding-top: 90px;
}

/* --- TYPOGRAPHY & LINKS --- */
a{color:inherit}
.text-muted{color:var(--muted)!important}

/* --- NAVIGATION --- */
.navbar{ 
  position: fixed; 
  top: 0; 
  left: 0; 
  right: 0; 
  z-index: 1200; 
  backdrop-filter: blur(10px); 
  background: rgba(11,15,19,.55)!important; 
  border-bottom: 1px solid var(--border); 
  font-family: "Fjalla One", Arial, sans-serif;
}

.nav-item a{
  font-family: "Fjalla One", Arial, sans-serif;
  font-weight: 550;
  
}

/* --- BRANDING --- */
.brand-badge{
  width:38px;height:38px;
  border-radius: 12px;
  display:inline-grid;place-items:center;
  background: linear-gradient(180deg, rgba(246,177,10,.95), rgba(246,177,10,.65));
  box-shadow: 0 10px 25px rgba(246,177,10,.18);
}
.brand-badge svg{width:22px;height:22px;fill:#1a1a1a}

/* --- BUTTONS --- */
.btn-accent{
  --bs-btn-color:#1a1a1a;
  --bs-btn-bg: var(--accent);
  --bs-btn-border-color: var(--accent);
  --bs-btn-hover-bg: var(--accent-2);
  --bs-btn-hover-border-color: var(--accent-2);
  --bs-btn-active-bg: var(--accent-2);
  --bs-btn-active-border-color: var(--accent-2);
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(246,177,10,.18);
}

.btn-ghost{
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 12px;
  background: rgba(255,255,255,.03);
}
.btn-ghost:hover{background: rgba(255,255,255,.06)}

/* --- SECTIONS & LAYOUT --- */
.section{
  padding: 70px 0;
}

/* --- HERO --- */
.hero{
  padding-top: 110px;
  padding-bottom: 70px;
}

.hero-card{
  border: 1px solid var(--border);
  border-radius: 26px;
  overflow:hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  box-shadow: var(--shadow);
}

.hero-img{
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}

.hero-overlay{
  padding: 48px;
}

/* --- KPIS --- */
.kpis{
  display:flex;
  gap:22px;
  flex-wrap:wrap;
  margin-top: 22px;
}

.kpi{
  display:flex; gap:12px; align-items:center;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,.16);
}

.kpi .icon{
  width:38px;height:38px;
  border-radius: 14px;
  display:grid;place-items:center;
  background: rgba(246,177,10,.14);
  border: 1px solid rgba(246,177,10,.25);
}
.kpi .icon svg{width:18px;height:18px;fill:var(--accent)}

.kpi .label{font-size:.82rem;color:var(--muted)}
.kpi .value{font-weight:800;line-height:1.1}

.feature-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:18px;
}

@media (max-width: 992px){
  .hero-overlay{padding: 28px}
  .hero-img{height: 320px}
  .feature-grid{grid-template-columns: 1fr}
}

/* --- TILES --- */
.tile{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  overflow:hidden;
  box-shadow: 0 16px 35px rgba(0,0,0,.35);
  position:relative;
}

.tile img{
  width:100%;
  height: 210px;
  object-fit: cover;
}

.tile .content{
  padding: 16px 16px 18px 16px;
}

.tile .title{
  font-weight: 800;
  margin-bottom: 6px;
}

.tile .desc{
  color: var(--muted);
  font-size: .95rem;
  margin:0;
}

.tile-accent{
  background: linear-gradient(135deg, rgba(246,177,10,.95), rgba(246,177,10,.70));
  color:#1a1a1a;
  border-color: rgba(255,255,255,.18);
}
.tile-accent .desc{color: rgba(26,26,26,.82)}
.tile-accent .pill{
  display:inline-block;
  font-weight:800;
  font-size:.78rem;
  padding:6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
}

/* --- SPLIT LAYOUT --- */
.split{
  border-radius: 26px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.02);
  overflow:hidden;
}

.split .copy{
  padding: 34px;
}

.split .photo{
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  width: 100%;
}

/* --- FOOTER --- */
.footer{
  border-top: 1px solid var(--border);
  background: var(--bg-800);
  padding: 40px 0 16px;
}
.footer-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  align-items: start;
}
.footer-brand{
  display: grid;
  gap: 6px;
}
.footer-logo{
  width: 120px;
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.35));
}
.footer-brand h3{
  font-family: "Yipes", sans-serif;
  font-weight: 400;
  font-size: 28px;
  margin: 0;
}
.footer-title{
  color: var(--cta);
  font-weight: 800;
  letter-spacing: .01em;
  margin-bottom: 6px;
}
.footer-link{
  display: block;
  color: var(--text);
  text-decoration: none;
  padding: 2px 0;
}
.footer-link:hover{ color: var(--cta-hover); }
.footer-note{
  margin-top: 4px;
}
.footer-social{
  display: flex;
  gap: 8px;
}
.social-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  background: rgba(255,255,255,.03);
  box-shadow: 0 10px 20px rgba(0,0,0,.25);
  font-weight: 700;
}
.social-pill:hover{
  background: rgba(255,255,255,.08);
  color: var(--cta);
}
.footer-bottom{
  border-top: 1px solid var(--border);
  margin-top: 18px;
  padding-top: 12px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

/* --- FONTS --- */
@font-face {
  font-family: "Yipes";
  src: url("../fonts/Yipes-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

#nom-entreprise {
  font-family: "Yipes", sans-serif;
  font-weight: 400;
  font-size: clamp(22px, 2vw, 32px);
  margin-top: 5px;
}

.navbar-brand.d-flex {
  display: grid !important;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.5rem;
  align-items: center;
  gap: 0;
}

.navbar-brand .logo {
  grid-column: 1;
  grid-row: 1 / span 2;
}

#nom-entreprise {
  grid-column: 2;
  grid-row: 1;
}

#sous-nom-entreprise {
  grid-column: 2;
  grid-row: 2;
  margin-top: -30px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.02em;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

/* --- HERO BACKGROUND --- */
.logo {
  height: 80px;
  width: auto;
}
.hero{
  padding-bottom: 0 !important;
}
.hero-bg {
  min-height: 90vh;
  background-image: url("../img/deuxieme-hero.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
  display: block !important;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,.65),
    rgba(0,0,0,.35),
    rgba(0,0,0,.15)
  );
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 100px;
}

.hero-content {
  color: #fff;
}

.hero-content p,
.hero-content .text-muted {
  color: rgba(255,255,255,.85) !important;
}

.hero-title {
  font-weight: 750;
  font-size: clamp(2.8rem, 5.6vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: 0.6rem;
  margin-bottom: 1rem;
  font-family: "Fjalla One", Arial, sans-serif;
}

.hero-title span {
  display: block;
  font-weight: 750;
}

.btn-cta{
  --bs-btn-color: #1a1a1a;
  --bs-btn-bg: var(--cta);
  --bs-btn-border-color: var(--cta);
  --bs-btn-hover-bg: var(--cta-hover);
  --bs-btn-hover-border-color: var(--cta-hover);
  --bs-btn-active-bg: var(--cta-hover);
  --bs-btn-active-border-color: var(--cta-hover);
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(244,129,79,.22);
}

.hero .btn-cta{
  padding: 14px 28px;
  font-size: 1.05rem;
}

.hero .btn-ghost{
  padding: 13px 22px;
  font-size: 1rem;
  font-weight: 700;
}
.btn-hero-projects{
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  box-shadow: 0 16px 32px rgba(0,0,0,.30);
  font-weight: 800;
  backdrop-filter: blur(6px);
}
.btn-hero-projects:hover{
  background: rgba(255,255,255,.20);
  border-color: rgba(255,255,255,.38);
}

/* --- SERVICES --- */
.services-section-header{
  margin-top: 0px;
}

.services-photo-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  grid-auto-rows: 450px;
}

@media (max-width: 992px){
  .services-photo-grid{ grid-template-columns: 1fr; }
}

/* --- SERVICE TILES --- */
.service-tile{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  box-shadow: 0 16px 35px rgba(0,0,0,.35);
  display:block;
  text-decoration:none;
  min-height: 250px;
}

.service-tile img{
  width:100%;
  height:100%;
  object-fit: cover; display:block;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.01); transition: transform .35s ease, filter .35s ease;
}

.service-tile::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.10),
    rgba(0,0,0,.55)
  );
  z-index:1;
}

.service-tile .overlay{
  position:absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index:2;
}

.service-tile h4{
  margin:0 0 6px 0;
  font-weight: 900;
}

.service-tile p{
  margin:0;
  color: rgba(255,255,255,.82);
  font-size: .95rem;
}

.service-tile:hover img{
  transform: scale(1.03); }

.service-tile--cta{
  background: linear-gradient(135deg, rgba(244,129,79,.95), rgba(244,129,79,.65));
}

/* --- JOBS --- */
.jobs-section .job-card{
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  border-radius: 18px;
  padding: 26px 26px 22px;
  box-shadow: 0 18px 42px rgba(0,0,0,.34);
  backdrop-filter: blur(4px);
}

.job-pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(246,177,10,.9), rgba(246,177,10,.7));
  color: #1a1a1a;
  font-weight: 800;
  letter-spacing: .01em;
}

.job-pill--alt{
  background: linear-gradient(135deg, rgba(244,129,79,.92), rgba(244,129,79,.7));
}

.job-tag{
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.5;
}

.job-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 14px 0 10px;
}

.job-meta .tag{
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: .9rem;
  color: var(--muted);
  background: rgba(255,255,255,.02);
}

.job-list{
  color: var(--muted);
  padding-left: 1.1rem;
  line-height: 1.6;
}

.job-list li{margin-bottom: 8px;}

.jobs-section{
  position: relative;
}

.jobs-section .container{
  position:relative;
  z-index:2;
  overflow: visible;
}

.jobs-illustration{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  box-shadow: 0 18px 42px rgba(0,0,0,.34);
  height: 100%;
}

.jobs-illustration img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.jobs-head{
  margin-bottom: 56px;
}

@media (max-width: 992px){
  .jobs-section .job-card{padding: 22px}
  .job-meta{gap: 10px}
  .jobs-head{margin-bottom: 42px;}
}

.service-tile--cta::before{ display:none; }

.service-tile--cta h4,
.service-tile--cta p{
  color:#1a1a1a;
}

.service-tile--cta p{
  color: rgba(26,26,26,.80);
}

.pill{
  display:inline-block;
  font-weight:800;
  font-size:.78rem;
  padding:6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  margin-bottom: 10px;
}

.btn-mini{
  display:inline-block;
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(0,0,0,.12);
  font-weight: 800;
}


.first-after-hero{
  padding-top: 40px !important; }

.title-service{
  font-family: "Yipes", sans-serif;
  font-weight: 700;
  font-size: 50px;
  margin-top: 50px;
}

/* --- ABOUT --- */
.about-section{
  margin-top: 40px;
  position: relative;
  border-radius: 26px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.02); 
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
  overflow: hidden;
}

.about-section h2{
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.about-section .eyebrow{
  letter-spacing: .08em;
}

.about-visual{
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 30px 16px 10px 16px;
}

.about-blob{
  position: absolute;
  inset: 2% 5% 0 2%;
  background: linear-gradient(135deg, rgba(100, 142, 37), rgba(9, 75, 5, 0.7));
  border-radius: 58% 42% 50% 48%;
  filter: drop-shadow(0 16px 35px rgba(0,0,0,.35));
  z-index: 1;
}

.about-photo{
  position: relative;
  z-index: 2;
  display: block;
  width: 90%;
  margin: 0 auto;
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(0,0,0,.40);
  object-fit: cover;
}

.about-leaf{
  position: absolute;
  right: auto;
  left: 50%;
  top: 97%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 500px;
  border-radius: 32px;
  box-shadow: none;
  clip-path: ellipse(58% 52% at 50% 50%);
  -webkit-mask-image: radial-gradient(ellipse 68% 68% at 50% 50%, #000 68%, transparent 100%);
  mask-image: radial-gradient(ellipse 68% 68% at 50% 50%, #000 68%, transparent 100%);
  opacity: .96;
  pointer-events: none;
  z-index: 3;
}

@media (max-width: 1199px){
  .about-leaf{
    content: url("../img/feuille-eucalyptus-cell.png");
    position: absolute;
    right: auto;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    width: 70%;
    max-width: 320px;
    margin: 0;
    display: block;
    border-radius: 32px;
    clip-path: none;
    -webkit-mask-image: none;
    mask-image: none;
    z-index: 2;
  }
}

@media (max-width: 992px){
  .about-leaf{
    content: url("../img/feuille-eucalyptus-cell.png");
    position: absolute;
    right: auto;
    left: 50%;
    top: 82%;
    transform: translateX(-50%);
    width: 70%;
    max-width: 320px;
    margin: 0;
    display: block;
    clip-path: none;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

.about-section p{
  line-height: 1.6;
}

/* --- SERVICE CTA TILE --- */
.service-tile--cta {
  position: relative;
  min-height: 320px;
  background: linear-gradient(135deg, #f4814f, #e07a4f);
  overflow: hidden; 
}

.service-tile--cta:hover img {
  transform: none !important;
}

.service-tile--cta .cta-content {
  position: relative;
  z-index: 2;
  padding-top: 50px;
  padding-left: 25px;
  padding-right: 20px;
  color: #1a1a1a;
}

.service-tile--cta .cta-plant-wrapper {
  position: absolute;
  bottom: -75%;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  z-index: 1;
}

/* --- A PROPOS --- */

.title-propos{
  font-size: 25px;
}

/* --- JOBS LAYOUT --- */
.jobs-section{
  padding-top: 90px;
  padding-bottom: 90px;
}

.jobs-section .job-card{
  padding: 28px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow: 0 22px 60px rgba(0,0,0,.40);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.jobs-garland{
  position: absolute;
  top: 10%;
  left: -24px;
  width: calc(100% + 48px);
  z-index: 4;
  pointer-events: none;
}

.jobs-garland img{
  width: 50%;
  height: auto;
  object-fit: contain;
  transform: none;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,.25));
}

.job-card--with-illus{
  position: relative;
  overflow: visible;
}

.job-illustration{
  position:absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,.28));
  z-index: 3;
}

.job-card--with-illus-right{
  position: relative;
  overflow: visible;
}

.job-illustration--right{
  left: auto;
  right: -10%;
  top: -22%;
  width: 140%;
  height: auto;
}

@media (max-width: 768px){
  .job-illustration--right{
    right: -12px;
    width: 180px;
  }
}

@media (max-width: 576px){
  .job-illustration--right{
    right: -6px;
    width: 150px;
  }
}

.jobs-section .job-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 26px 70px rgba(0,0,0,.48);
  border-color: rgba(255,255,255,.14);
}

.job-card .job-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.job-card .job-title{
  font-size: 1.25rem;
  font-weight: 900;
  margin: 0;
  line-height: 1.15;
}

.job-card .job-sub{
  margin: 6px 0 0 0;
  color: var(--muted);
  font-size: .95rem;
}

.job-meta{
  margin: 16px 0 16px;
  gap: 10px;
}

.job-meta .tag{
  padding: 7px 11px;
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.10);
}

.job-divider{
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 16px 0;
}

.job-list{
  margin: 10px 0 0;
  padding-left: 1.1rem;
}
.job-list li{
  margin-bottom: 10px;
}

.jobs-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.20);
}


@media (max-width: 992px){
  .jobs-section{ padding-top: 70px; padding-bottom: 70px; }
  .jobs-section .job-card{ padding: 22px; }
}


.about-vine-img{
  position: absolute;
  top: -19%;
  left: 0;

  height: 500px;
  width: auto;

  z-index: 0;
  pointer-events: none;
  opacity: .95;
}
.section{
  overflow: visible;
}

#projets{
  background: var(--bg-900);
}

/* --- PROJECTS --- */
#projets{
  background-color: var(--bg-900);
}
#projets .container-fluid{
  background-color: inherit;
}
.projects-wrapper{
  margin-top: 20px;
}

.projects-title{
  font-family: "Yipes", sans-serif;
  letter-spacing: -.01em;
  font-size: 50px;
  line-height: 1.05;
  align-items: center;
  text-align: center;
  margin-left: 0;
}
.projects-head{
  margin-left: 0;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 18px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  display: flex;
  flex-direction: column;
}

.projects-badge{
  display:none;
}

.projects-scroller{
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 6px 4px 10px;
  scroll-snap-type: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  user-select: none;
}

.projects-scroller::-webkit-scrollbar{display:none;}

.projects-scroller.dragging{
  cursor: grabbing;
  user-select: none;
}

.project-card{
  margin-left: 2px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  box-shadow: 0 16px 35px rgba(0,0,0,.35);
  cursor: inherit;
  min-height: 259px;
  transition: transform .22s ease, box-shadow .22s ease;
  flex: 0 0 clamp(320px, 48vw, 420px);
  scroll-snap-align: start;
  user-select: none;
}

.project-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.project-card::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.68));
  z-index:1;
}

.project-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(0,0,0,.45);
}

.project-card:hover img{
  transform: scale(1.05);
}

.project-overlay{
  position:absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index:2;
}

.project-overlay h5{
  margin: 0 0 8px 0;
  font-weight: 800;
  font-size: 1.2rem;
}

.project-tag{
  background: rgba(0,0,0,.45);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 10px 25px rgba(0,0,0,.35);
}



/* --- HARMONIZED HEADINGS --- */
.jobs-section h2,
.title-service{
  font-family: "Yipes", sans-serif;
  letter-spacing: -.01em;
  font-size: 50px;
  line-height: 1.05;
}

.hero-eyebrow{
  letter-spacing: .16em;
  font-size: 1rem;
  color: rgba(255,255,255,.9);
  margin-bottom: 4px;
  font-weight: 800;
}

.hero-subtext{
  font-size: 1.05rem;
  max-width: 640px;
  color: rgba(255,255,255,.82);
}

.services-section-header p,
.projects-head p,
.jobs-head p{
  font-size: 1.08rem;
}

.project-modal{
  background: rgba(11,15,19,.92);
  border: 1px solid var(--border);
  border-radius: 18px;
}

.project-modal img{
  border-radius: 12px;
}

/* --- CONTACT SECTION --- */
.contact-section{
  padding-top: 1px;
  padding-bottom: 90px;
  background: var(--bg-900);
}
.contact-section .row{
  margin-top: 12px;
  align-items: stretch;
}
.contact-section .col-lg-5,
.contact-section .col-lg-7{
  display: flex;
}
.contact-head p{
  max-width: 720px;
  margin: 0 auto;
}

.contact-pane{
  border-radius: 24px;
  padding: 26px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  height: auto;
  flex: 1;
}
.contact-pane .eyebrow,
.contact-form-card h3{
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0;
  font-family: inherit;
  color: var(--text);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}

.contact-title{
  font-family: "Yipes", sans-serif;
  font-size: clamp(2rem, 3vw, 2.4rem);
}

.contact-list{
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}
.contact-item{
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
}
.contact-item .label{
  font-size: .9rem;
  color: var(--muted);
}
.contact-item .value{
  font-weight: 800;
  word-break: break-word;
  overflow-wrap: anywhere;
  line-height: 1.3;
}
.icon-circle{
  width: 42px; height: 42px;
  border-radius: 14px;
  display:grid;place-items:center;
  background: rgba(255,255,255,.08);
  font-weight: 800;
  padding: 6px;
}

.icon-circle img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-reasons{
  display: grid;
  gap: 10px;
  margin-top: 10px;
}
.contact-reasons .reason{
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.02);
  border: 1px dashed rgba(255,255,255,.12);
  font-weight: 700;
  color: var(--text);
}

.contact-form-card{
  border-radius: 26px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  box-shadow: 0 24px 55px rgba(0,0,0,.35);
  padding: 26px;
  height: auto;
  flex: 1;
}

.contact-form-card .form-control,
.contact-form-card .form-select{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  color: var(--text);
}

.contact-form-card .form-control::placeholder{
  color: rgba(255,255,255,.60);
}

.contact-form-card label{
  color: var(--muted);
  font-size: .92rem;
}

.contact-form-card .btn{
  font-weight: 800;
}
.contact-section .btn-cta{
  --bs-btn-bg: var(--cta);
  --bs-btn-border-color: var(--cta);
  --bs-btn-hover-bg: var(--cta-hover);
  --bs-btn-hover-border-color: var(--cta-hover);
  --bs-btn-active-bg: var(--cta-hover);
  --bs-btn-active-border-color: var(--cta-hover);
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(244,129,79,.22);
}
@media (max-width: 992px){
  .projects-head{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .projects-scroller{
    gap: 14px;
    padding-left: 2px;
    padding-right: 2px;
  }
  .project-card{
    flex-basis: 88vw;
    min-height: 360px;
  }
  .jobs-garland{
    top: -10px;
    left: -16px;
    width: calc(100% + 32px);
  }
  .jobs-garland img{
    transform: rotate(0deg);
  }
}
@media (max-width: 992px){
  .contact-section{
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .contact-form-card, .contact-pane{
    padding: 22px;
  }
}

.contact-form-card .eyebrow{
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 12px;
}


@media (max-width: 1500px){

  .service-tile--cta .cta-plant-wrapper{
    bottom: -55%;
    width: 120%;
  }

  .job-card--with-illus-right .job-illustration--right{
    top: -22%;
  }
}


@media (max-width: 1399px){

  .service-tile--cta .cta-plant-wrapper{
    bottom: -50%;
    width: 120%;
  }

    .job-card--with-illus-right .job-illustration--right{
    top: -5%;
  }
}

@media (max-width: 1024px){
  .hero-bg{
    background-position: 80%;
  }
  .hero-overlay{
    padding: 220px 18px 28px;
  }
  .about-vine-img{
    top: -16%;
    height: 120px;
  }
  .service-tile--cta .cta-plant-wrapper{
    bottom: -110%;
    width: 120%;
  }

  .job-card--with-illus-right .job-illustration--right{
    top: 50%;
  }
}

@media (max-width: 1190px){
  .hero-bg{
    background-position: 80%;
  }
  .hero-overlay{
    padding: 220px 18px 28px;
  }
  .about-vine-img{
    top: -12%;
    height: 420px;
  }
  .service-tile--cta .cta-plant-wrapper{
    bottom: -110%;
    width: 120%;
  }

  .job-card--with-illus-right .job-illustration--right{
    top: -47%;
    right: -10%;
    width: 120%;
  }
  .jobs-garland{
    top: 84px;
    width: calc(100% + 24px);
  }
  .jobs-garland img{
    width: 72%;
  }
  .job-illustration{
    top: 50%;
  }
    .about-leaf{
    content: url("../img/feuille-eucalyptus-cell.png");
    position: absolute;
    right: auto;
    left: 50%;
    top: 97%;
    transform: translateX(-50%);
    width: 70%;
    max-width: 320px;
    margin: 0;
    display: block;
    border-radius: 32px;
    clip-path: none;
    -webkit-mask-image: none;
    mask-image: none;
    z-index: 2;
  }
}


@media (max-width: 576px){

  #nom-entreprise{
    margin-top: 10px;
  }
  
  .about-vine-img{
    top: -8%;
    height: 320px;
  }
  .service-tile--cta .cta-plant-wrapper{
    bottom: -49%;
    width: 120%;
  }
  .hero-bg{
    background-position: 80%;
  }
  .hero-overlay{
    padding: 24px 18px 28px;
  }

  .jobs-garland{
    top: 184px;
    left: 5px;
    width: calc(100% + 24px);
  }
  .jobs-garland img{
    width: 72%;
  }
  .job-illustration{
    top: 50%;
  }
  .contact-item{
    align-items: flex-start;
  }
  .contact-item .value{
    font-size: 0.95rem;
  }

  .contact-section{
    padding-top: 10px;
  }
  .contact-head{
    margin-top: -8px;
    margin-bottom: 12px;
  }
  .contact-pane{
    margin-top: 0;
  }
  .about-leaf{
    content: url("../img/feuille-eucalyptus-cell.png");
    position: absolute;
    right: auto;
    left: 50%;
    top: 98%;
    transform: translateX(-50%);
    width: 70%;
    max-width: 320px;
    margin: 0;
    display: block;
    border-radius: 32px;
    clip-path: none;
    -webkit-mask-image: none;
    mask-image: none;
    z-index: 2;
  }
  .about-vine-img{
    top: -8%;
    height: 320px;
  }
  .service-tile--cta .cta-plant-wrapper{
    bottom: -49%;
    width: 120%;
  }
  .hero-bg{
    background-position: 80%;
  }
  .hero-overlay{
    padding: 24px 18px 28px;
  }
  .job-card--with-illus-right .job-illustration--right{
    display: none;
  }

  .jobs-garland img{
    display: none;
  }

}

/* --- AJUSTE LA COURONNE DROITE ENTRE 1200PX ET 992PX --- */
@media (max-width: 1199px) and (min-width: 992px){
  .about-vine-img{
    top: -12%;
    height: 320px;
  }
  .jobs-garland{
    width: 72%;
    top: 11%;
    left: 1px;
  }

  .job-card--with-illus-right .job-illustration--right{
    top: 31%;
    right: -8%;
    width: 120%;
  }
   .service-tile--cta .cta-plant-wrapper{
    bottom: -42%;
    width: 130%;
  }   
}


@media (min-width: 576px) and (max-width: 767.98px){
  .about-vine-img{
    top: -11%;
    height: 420px;
  }
  .service-tile--cta .cta-plant-wrapper{
    bottom: -69%;
    width: 120%;
  }
  .hero-bg{
    background-position: 80%;
  }
  .hero-overlay{
    padding: 74px 18px 28px;
  }
  .job-card--with-illus-right .job-illustration--right{
    display: none;
  }

  .jobs-garland img{
    display: none;
  }
}

@media (max-width: 575px) and (min-width: 487px){
  .service-tile--cta .cta-plant-wrapper{
    bottom: -83%;
    width: 130%;
  }
}

@media (max-width: 486px) and (min-width: 370px){
  .service-tile--cta .cta-plant-wrapper{
    bottom: -65%;
    width: 150%;
  }
}  
