style.css

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 40px 20px;
    color: #333;
    overflow-x:hidden;
}




body {
 .hero{
  width:100%;
  overflow:hidden;
}

  .hero::before{
  filter: contrast(1.05) saturate(0.9);
  animation: heroZoom 14s ease forwards;
}
}
@media (max-width: 768px) {
  .hero::before {
    transform: scale(1);
    background-position: center top;
  }
}

:root{
  --bg:#221812;
  --surface:#221a14;
  --text:#f5f1e8;
  --muted:#b9b2a6;
  --line:rgba(255,255,255,0.07);
  --accent:#c8a882;
  --max-width:1450px;

 


--accent:#c8a882;
}

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

html{
  scroll-behavior:smooth;
}

body{
  background:var(--bg);
  color:var(--text);
  font-family:'Inter',sans-serif;
  overflow-x:hidden;
  line-height:1.7;
}



/* =========================
   TYPOGRAPHY PREMIUM RESET
========================= */

h1,h2,h3{
  font-family:'Cormorant Garamond',serif;
  font-weight:200;
  letter-spacing:-0.02em;
}

p{
  font-family:'Cormorant Garamond',serif;
  color:var(--muted);

}

/* =========================
   CONTAINER
========================= */

.container{
  width:min(92%, var(--max-width));
  margin:auto;
}

/* =========================
   SECTIONS (IMPORTANT RENDU LUXE)
========================= */

.section{
  padding:160px 0;
  position:relative;
}

/* ligne très fine type editorial */
.section::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:1px;
  background:var(--line);
}

/* =========================
   EYEBROW
========================= */
.section{
  --align-eyebrow: left;
}

.eyebrow{
  width:100%;
  text-align:left;
}


.eyebrow{
  font-size:25px;
  font-weight:600;
  letter-spacing: 0.28em;
  text-transform:uppercase;
  color:#dfdede;

  background: rgba(0, 0, 0, 0.41);
   backdrop-filter: blur(1px);

  display:block;
  width:100%;
   margin-bottom: 16px;

  text-align:left !important;
  
}
.eyebrow{
  align-self:flex-start !important;
}

/* =========================
   HERO (gros upgrade visuel)
========================= */
.hero::before{
  content:"";
  position:absolute;
  inset:0;

  background:
    linear-gradient(
      to bottom,
      rgba(23,17,13,0.20),
      rgba(23,17,13,0.60),
      rgba(15,10,8,0.92)
    ),
    url('assets/images/hero.jpeg');

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;

  filter:
    contrast(1.04)
    brightness(0.88)
    saturate(0.92);

  transform:scale(1.04);

  animation:heroZoom 14s ease forwards;
}

html,
body{
  overflow-x:hidden;
  width:100%;
}

body{
  position:relative;
}

section{
  overflow:hidden;
}

.hero{
  overflow:hidden;
}

.hero{
  width:100%;
  overflow:hidden;
}

.hero {
  padding-top: 140px;
}

.hero{
  min-height:100vh;
  display:flex;
  align-items:stretch;;
  position:relative;
}

.hero-content{
  position:relative;
  z-index:2;
  padding-bottom:120px;

  display:flex;
  flex-direction:column;
  gap:28px;
  max-width:900px;
}

/* BOutons page d'accueuil plus petit sur mobile */

@keyframes heroZoom{
  from{
    transform:scale(1.08);
  }
  to{
    transform:scale(1);
  }
}

/* Forcer une ligne sur Desktop pour avoir boutons plus petits et alignés */
 .hero-buttons .btn {
    flex: 1 1 100%;
    font-size: 13px;
    padding: 12px;
  }

 @media (max-width: 768px) {
  .hero-buttons {
    display: flex;
    flex-wrap: nowrap;
  }

  .hero-buttons .btn {
    flex: 1;
    margin-right: 10px;
  }

  .hero-buttons .btn:last-child {
    margin-right: 0;
  }
}


/*===============================================*/

.title{
  font-size:clamp(3.2rem,8vw,7.4rem);
  line-height:0.95;
  max-width:1100px;
}

.hero p{
  margin-top:34px;
  max-width:650px;
  color:rgba(255,255,255,0.72);
}

/* =========================
   BUTTONS (plus luxe)
========================= */

.btn{
  padding:16px 30px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.18);
  background:transparent;
  color:var(--text);
  transition:0.4s ease;
  display:inline-block;
}

.btn:hover{
  background:var(--text);
  color:var(--bg);
  transform:translateY(-2px);
}
.btn-primary{
  background: transparent;
  color: var(--text);
  border:1px solid rgba(255,255,255,0.18);
}

/* =========================
   MANIFESTO (plus éditorial)
========================= */

.manifesto{
  display:grid;
  grid-template-columns:1.3fr 0.7fr;
  gap:90px;
  align-items:end;
}

.manifesto-text{
  font-size:clamp(2.2rem,5vw,4.8rem);
  line-height:1.05;
}

@media (max-width: 768px){

  .manifesto{
    grid-template-columns:1fr;
    gap:40px;
  }

  .manifesto-text{
    font-size:clamp(1.8rem, 8vw, 2.4rem);
  }

  .manifesto-side{
    font-size:0.95rem;
    color:var(--muted);
    padding-right:0;
  }

}

/* =========================
   SERVICES (plus architecture)
========================= */
@media (max-width: 768px){

  .services-grid{
    grid-template-columns: 1fr !important;
  }

}

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

*{
  box-sizing:border-box;
}

.service{
  position:relative;
  overflow:hidden;
  padding:40px;
  display:flex;
  gap:30px;
  border:1px solid rgba(255,255,255,0.06);
  background:linear-gradient(145deg, #1a1410, #15100c);
}

.service::before{
  content:"";
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0.70;
  filter:contrast(0.8) brightness(0.8);
  z-index:0;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:50px;
}

.service{
  background:linear-gradient(145deg, #161616, #121212);
  border:1px solid rgba(140, 97, 97, 0.06);
  padding:46px;
  min-height:340px;
  transition:0.6s ease;
  border-radius: 15px;
  overflow:hidden;
}

.service:hover{
  transform:translateY(-8px);
  border-color:rgba(255,255,255,0.14);
}

.service h3{
  font-size:2.6rem;
  margin-bottom:18px;
}
.service::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(0,0,0,0.10),
    rgba(0,0,0,0.2)
  );
  z-index:1;
}
.service > div{
  position:relative;
  z-index:2;
}
.service:nth-child(1)::before{
  background-image:url('assets/images/cloisons.jpg');
}

.service:nth-child(2)::before{
  background-image:url('assets/images/plafond.jpg');
}

.service:nth-child(3)::before{
  background-image:url('assets/images/isolation.jpg');
}

.service:nth-child(4)::before{
  background-image:url('assets/images/ossature.webp');
}

/* CONTENT */
.gallery-content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.72),
    rgba(0,0,0,0)
  );
  color: white;
}

/* TITLES */
.gallery-content h3 {
  font-size: 18px;
  margin-bottom: 6px;
  font-weight: 500;
}

.gallery-content p {
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.9;
}

/* =========================
   RÉALISATIONS (SLIDER PROPRE)
========================= */
.gallery-wrapper {
  position: relative;
}

/* TRACK */
.gallery-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 10px 0;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

/* ITEMS */
.gallery-item {
  flex: 0 0 calc(25% - 15px);
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: #111;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

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

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.45);
  opacity: 0;
  transition: .3s ease;
  pointer-events: none;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.overlay span {
  color: white;
  border: 1px solid white;
  padding: 12px 18px;
  text-transform: uppercase;
  font-size: .8rem;
}

/* NAV FLÈCHES */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,.45);
  color: white;
  font-size: 26px;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(10px);
  transition: .25s ease;
}

.gallery-nav.prev { left: -25px; }
.gallery-nav.next { right: -25px; }

.gallery-nav:hover {
  background: rgba(0,0,0,.65);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .gallery-item {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 600px) {
  .gallery-item {
    flex: 0 0 100%;
  }

  .gallery-nav.prev { left: 10px; }
  .gallery-nav.next { right: 10px; }
}
.portfolio-section {
  width: min(92%, 1450px);
  margin: auto;
  padding: 160px 0;
}

.portfolio-section h2 {
  text-align: center;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 15px;
}

.portfolio-section .subtitle {
  text-align: center;
  margin-bottom: 60px;
  color: var(--muted);
}

/* =========================
   SLIDER STRUCTURE
========================= */

.gallery-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 10px 0;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}



/* =========================
   OVERLAY
========================= */

.overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.45);
  opacity: 0;
  transition: .3s ease;
  pointer-events: none;
}



.overlay span {
  color: #fff;
  border: 1px solid #fff;
  padding: 12px 18px;
  text-transform: uppercase;
  font-size: .8rem;
}

/* =========================
   NAVIGATION FLÈCHES SLIDER
========================= */


/* =========================
   LIGHTBOX FULLSCREEN
========================= */

#lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.95);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease;
  z-index: 99999;
}

#lightbox.active {
  opacity: 1;
  visibility: visible;
}

#lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 25px 80px rgba(0,0,0,.55);
  opacity: 0;
  transform: scale(.95);
  transition: opacity .35s ease, transform .35s ease;
}

#lightbox.active img {
  opacity: 1;
  transform: scale(1);
}

/* FLÈCHES LIGHTBOX */

#lightbox .prev,
#lightbox .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: white;
  font-size: 28px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: .25s ease;
}

#lightbox .prev { left: 30px; }
#lightbox .next { right: 30px; }

#lightbox .prev:hover,
#lightbox .next:hover {
  background: rgba(255,255,255,.22);
}

/* CAPTION */

.lightbox-caption {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  text-align: center;
  max-width: 90%;
}

/* MOBILE LIGHTBOX */

@media (max-width: 768px) {
  #lightbox .prev,
  #lightbox .next {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  #lightbox .prev { left: 15px; }
  #lightbox .next { right: 15px; }

  .lightbox-caption {
    font-size: .8rem;
  }
}


/* =========================
   PROCESS (plus design studio)
========================= */

.process-item{
  display:grid;
  grid-template-columns:120px 1fr 1fr;
  gap:50px;
  padding-bottom:50px;
  border-bottom:1px solid var(--line);
}

.process-step{
  color:var(--muted);
}

@media (max-width:768px){

  .process-item{
    grid-template-columns:50px 1fr;
    gap:15px;
  }

  .process-item p{
    grid-column:2;
  }

}

/* =========================
   CTA (très premium)
========================= */

.cta .eyebrow{
  width:100%;
  display:block;
  text-align:left;
  align-self:stretch;
}

.cta{
  text-align:center;
}

.cta h2{
  font-size:30px;
  line-height:1.2;
  margin-bottom:40px;
}

.cta .hero-buttons{
  margin-bottom:20px;
}

.contact-form{
  margin-top:20px;
}

.contact-form .form-row{
  margin-bottom:22px;
}

.cta .container{
  display:flex;
  flex-direction:column;
  gap:24px;
}

@media (max-width:768px){

  .cta h2{
    font-size:32px;
  }

  .cta .hero-buttons{
    margin-bottom:50px;
  }

}
.contact-wrapper{
  margin-top:60px;
}
/* =========================
   ANIMATION (plus fluide)
========================= */

.fade-up{
  opacity:0;
  transform:translateY(50px);
  transition:1.2s cubic-bezier(.2,.8,.2,1);
}

.fade-up.visible{
  opacity:1;
  transform:translateY(0);
}

/* =======================
   NAVBAR BASE (STICKY)
======================= */

.nav{
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(14,14,14,0.55);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* container */
.nav-inner{
  width: min(94%, var(--max-width));
  margin: auto;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =======================
   LOGO
======================= */

.logo{
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  letter-spacing: 0.04em;
  color: var(--text);
  text-decoration: none;
}

/* =======================
   MENU DESKTOP
======================= */

.nav-links{
  display: flex;
  gap: 42px;
  font-size: 0.9rem;
  color: var(--muted);
}

.nav-links a{
  position: relative;
  transition: 0.4s ease;
  color: inherit;
  text-decoration: none;
}

.nav-links a::after{
  content:"";
  position:absolute;
  bottom:-6px;
  left:0;
  width:0%;
  height:1px;
  background:var(--text);
  transition:0.4s ease;
}

.nav-links a:hover{
  color: var(--text);
}

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

/* =======================
   BURGER (hidden desktop)
======================= */

.burger{
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
}

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

@media (max-width: 768px){

  /* burger visible */
  .burger{
    display: block;
  }

  /* logo plus petit */
  .logo{
    font-size: 1.4rem;
  }

  /* menu caché par défaut */
  .nav-links{
    display: none;
    position: absolute;
    top: 92px;
    right: 20px;
    flex-direction: column;
    gap: 14px;
    background: rgba(14,14,14,0.95);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
  }

  /* menu ouvert */
  .nav-links.active{
    display: flex;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  gap: 12px;
}

input, select, textarea {
  
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: border 0.2s ease;
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #999;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

button {
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  background: #111;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

button:hover {
  opacity: 0.85;
}

/* =========================
   LIGHTBOX
========================= */

#lightbox{
  position:fixed;
  inset:0;

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

  background:rgba(0,0,0,0.95);

  opacity:0;
  visibility:hidden;

  transition:opacity .35s ease;

  z-index:99999;
}

#lightbox.active{
  opacity:1;
  visibility:visible;
}

/* =========================
   IMAGE
========================= */

#lightbox img{
  max-width:90vw;
  max-height:85vh;

  object-fit:contain;

  border-radius:12px;

  box-shadow:
    0 25px 80px rgba(0,0,0,.55);

  opacity:0;
  transform:scale(.95);

  transition:
    opacity .35s ease,
    transform .35s ease;
}

#lightbox.active img{
  opacity:1;
  transform:scale(1);
}

/* =========================
   FLÈCHES
========================= */

#lightbox .prev,
#lightbox .next{

  position:absolute;
  top:50%;

  transform:translateY(-50%);

  width:60px;
  height:60px;

  border:none;
  border-radius:50%;

  cursor:pointer;

  color:white;
  font-size:28px;

  background:rgba(255,255,255,.12);

  backdrop-filter:blur(10px);

  transition:.25s ease;
}

#lightbox .prev{
  left:30px;
}

#lightbox .next{
  right:30px;
}

#lightbox .prev:hover,
#lightbox .next:hover{
  background:rgba(255,255,255,.22);
}

/* =========================
   LÉGENDE
========================= */

.lightbox-caption{

  position:absolute;

  bottom:35px;
  left:50%;

  transform:translateX(-50%);

  color:white;

  font-size:.9rem;
  letter-spacing:.08em;
  text-transform:uppercase;

  padding:12px 18px;

  border-radius:999px;

  border:1px solid rgba(255,255,255,.18);

  background:rgba(255,255,255,.08);

  backdrop-filter:blur(12px);

  text-align:center;

  max-width:90%;
}

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

@media(max-width:768px){

  #lightbox .prev,
  #lightbox .next{
    width:50px;
    height:50px;
    font-size:22px;
  }

  #lightbox .prev{
    left:15px;
  }

  #lightbox .next{
    right:15px;
  }

  .lightbox-caption{
    width:90%;
    font-size:.8rem;
  }

}

/*==================
ajout temportaire 
==================*/

#contact{
    display:block !important;
}

#contact .container{
    display:block !important;
}

.contact-wrapper{
    display:block !important;
}

.cta,
.cta .container,
.contact-wrapper{
    display:block !important;
    width:100% !important;
}

/* =========================
   LINKS
========================= */

a,
a:visited,
a:hover,
a:active{
  color:var(--text);
  text-decoration:none;
}

.cookie-banner {
  position: fixed;
  bottom: 15px; /* mobile */
  left: 50%;
  transform: translateX(-50%);

  width: min(92%, 900px);

  background: rgba(255, 255, 255, 0.828);
  backdrop-filter: blur(12px);

  color: rgb(36, 29, 26);;

  padding: 14px 16px;

  border-radius: 14px;

  /* légère bordure premium */
  border: 1px solid rgba(255,255,255,0.15);

  z-index: 1000002;

  display: none;

  box-shadow:
    0 10px 35px rgba(0,0,0,0.25);
}
.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.cookie-content p {
  font-size: 12px;
  color: rgb(36, 29, 26);;
  line-height: 1.4;
  margin: 0;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 8px 10px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 13px;
}

.cookie-btn.accept {
  background: rgba(38, 32, 30, 0.964);;
  color: #ffffff;
}

.cookie-btn.reject {
  background: transparent;
  border: 1px solid #555;
  color: rgba(34, 27, 23, 0.906);;
}
@media (min-width: 769px) {

  .cookie-banner{
    bottom: 44px;
  }

}
@media (max-width: 600px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

@media (max-width:768px){

  /* Titre centré */
  .hero-content{
    text-align:center;
    align-items:center;
  }

  .title{
    text-align:center;
  }

  /* Texte plus lisible */
  .hero p{
    color:rgba(255,255,255,0.92);
    font-size:1.1rem;
    text-align:center;
  }

}

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

@media (min-width:769px){

  /* Paragraphe plus grand */
  .hero p{
    font-size:1.7rem;
    max-width:800px;
  }

  /* Boutons centrés */
  .hero-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
    width:100%;
  }

  /* Boutons plus gros */
  .hero-buttons .btn{
    font-size:1rem;
    padding:18px 34px;
  }

}

/* =========================
   BOUTON RETOUR EN HAUT
========================= */

#backToTop{
  position: fixed;
  bottom: 80px;
  right: 25px;

  width: 55px;
  height: 55px;

  border-radius: 50%;
  border: none;

  background: rgba(45, 37, 35, 0.889);
  backdrop-filter: blur(10px);

  color: white;
  font-size: 24px;
  cursor: pointer;

  z-index: 1000000;

  opacity: 0;
  visibility: hidden;

  transition: opacity .3s ease, visibility .3s ease;
}

#backToTop.show{
  opacity: 1;
  visibility: visible;
}

#backToTop:hover{
  background: rgba(255,255,255,0.3);
}

.legal-links{
  text-align:center;
  padding:50px 20px;
  border-top:1px solid rgba(255,255,255,0.06);
}

.legal-links a{
  font-size:0.65rem;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.55);
  margin:0 12px;
  transition:0.3s ease;
}

.legal-links a:hover{
  color:#c8a882;
}

.legal-links span{
  color:rgba(255,255,255,0.25);
}

/* =========================
   FLOATING CONTACT BAR
========================= */

.floating-contact{
  position:fixed;
  bottom:16px;
  left:50%;
  transform:translateX(-50%);

  display:flex;
  align-items:center;
  justify-content:center;
  gap:180px;

  padding:18px 40px;

  background:rgba(20,15,12,0.82);
  backdrop-filter:blur(18px);

  border:1px solid rgba(255,255,255,0.08);
  border-radius:18px;

  z-index:999998;

  box-shadow:
    0 15px 50px rgba(0,0,0,0.25);
}

.floating-contact a{
  color:var(--text);
  text-decoration:none;

  font-size:0.70rem;
  letter-spacing:0.18em;
  text-transform:uppercase;

  transition:.35s ease;
}

.floating-contact a:hover{
  color:var(--accent);
}
@media (max-width:768px){

  .floating-contact{
    position:fixed;

    left:50%;
    bottom:3px;

    transform:translateX(-50%);

    width:92%;
    max-width:420px;

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

    gap:35px;

    padding:14px 18px;

    border-radius:16px;

    background:rgba(20,15,12,0.88);
    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,0.08);

    z-index:1000001;

    box-shadow:
      0 10px 35px rgba(0,0,0,0.25);
  }

  .floating-contact a{
    font-size:0.62rem;

    letter-spacing:0.05em;

    white-space:nowrap;

    overflow:hidden;
    text-overflow:ellipsis;
  }

}

