@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root{
  --blue:#087bc1;
  --blue-light:#78c9f2;
  --ink:#0b1115;
  --paper:#f2f5f5;
  --white:#fff;
  --muted:#68747b;
  --line:#dce3e6;
  --dark:#0b1115;
  --shadow:0 30px 80px rgba(6,30,43,.13);
}

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:"DM Sans",Arial,sans-serif;
  color:var(--ink);
  background:var(--paper);
  overflow-x:hidden;
}

body.menu-open{
  overflow:hidden;
}

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

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

button{
  font:inherit;
}

::selection{
  background:var(--blue);
  color:#fff;
}

.container{
  width:min(1180px,calc(100% - 44px));
  margin:auto;
}


/* =========================================================
   LOADER
   ========================================================= */

.loader{
  position:fixed;
  inset:0;
  z-index:6000;

  display:grid;
  place-items:center;
  align-content:center;
  gap:18px;

  background:var(--dark);
  color:#fff;

  transition:.6s ease;
}

.loader.hide{
  opacity:0;
  visibility:hidden;
}

.loader-logo{
  width:180px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.loader-logo img{
  width:100%;
  height:auto;
  max-height:80px;
  object-fit:contain;
}

.loader-brand{
  font:800 28px Manrope;
  letter-spacing:.12em;
}

.loader-line{
  width:180px;
  height:1px;
  background:#27343b;
  overflow:hidden;
}

.loader-line i{
  display:block;
  width:45%;
  height:100%;
  background:var(--blue);
  animation:load 1.1s infinite;
}

@keyframes load{
  from{
    transform:translateX(-120%);
  }

  to{
    transform:translateX(320%);
  }
}


/* =========================================================
   SCROLL PROGRESS
   ========================================================= */

.progress-bar{
  position:fixed;
  z-index:5000;
  top:0;
  left:0;

  width:0;
  height:3px;

  background:linear-gradient(
    90deg,
    var(--blue),
    #6bcaff
  );
}


/* =========================================================
   HEADER
   ========================================================= */

.header{
  position:fixed;
  z-index:1000;

  left:0;
  right:0;
  top:0;

  color:#fff;

  transition:
    background .3s ease,
    backdrop-filter .3s ease,
    box-shadow .3s ease;
}


/* Slightly dark glass header */

.header.scrolled{
  background:rgba(213,218,220,.88);

  backdrop-filter:blur(20px) saturate(180%);
  -webkit-backdrop-filter:blur(20px) saturate(180%);

  box-shadow:
    0 8px 32px rgba(0,0,0,.14),
    inset 0 1px 1px rgba(255,255,255,.65),
    inset 0 -1px 2px rgba(0,0,0,.08);

  border-radius:0 0 10px 10px;

  color:var(--ink);
}


/* =========================================================
   NAV
   ========================================================= */

.nav{
  height:82px;

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

.brand{
  display:flex;
  align-items:center;
  justify-content:flex-start;

  width:auto;
  height:100%;

  flex-shrink:0;
}

.brand-logo{
  display:block;

  width:138px;
  height:auto;

  max-height:52px;

  object-fit:contain;

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

.brand:hover .brand-logo{
  transform:translateY(-1px);
  opacity:.88;
}

.brand-mark{
  display:none;
}

.brand > span:not(.brand-mark){
  display:none;
}

.footer-logo{
  width:145px;
  max-height:55px;
}


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

.nav-links{
  display:flex;
  align-items:center;
  gap:30px;

  font:
    600 10px Manrope,
    sans-serif;

  letter-spacing:.06em;
}

.nav-links a{
  position:relative;

  opacity:.7;

  transition:
    opacity .2s ease,
    color .2s ease;
}

.nav-links a:hover,
.nav-links a.active{
  opacity:1;
}

.nav-links > a:not(.nav-cta)::after{
  content:"";

  position:absolute;

  left:0;
  right:0;
  bottom:-8px;

  height:1px;

  background:var(--blue);

  transform:scaleX(0);
  transform-origin:right;

  transition:transform .3s ease;
}

.nav-links > a:not(.nav-cta):hover::after,
.nav-links > a.active:not(.nav-cta)::after{
  transform:scaleX(1);
  transform-origin:left;
}


/* =========================================================
   SCROLLED NAV TEXT
   ========================================================= */

.header.scrolled .nav-links{
  color:var(--ink);
}

.header.scrolled .nav-links a{
  color:var(--ink);
}

.header.scrolled .nav-links a:hover,
.header.scrolled .nav-links a.active{
  color:var(--ink);
}


/* =========================================================
   NAV CTA
   ========================================================= */

.nav-cta{
  border:1px solid rgba(255,255,255,.28);

  padding:11px 14px;

  opacity:1!important;

  transition:
    background .3s ease,
    border-color .3s ease,
    transform .3s ease;
}

.nav-cta span{
  color:var(--blue-light);

  margin-left:8px;

  transition:transform .3s ease;
}

.nav-cta:hover{
  background:rgba(255,255,255,.08);

  border-color:rgba(255,255,255,.55);

  transform:translateY(-2px);
}

.nav-cta:hover span{
  transform:translate(3px,-3px);
}

.header.scrolled .nav-cta{
  border-color:rgba(11,17,21,.22);

  color:var(--ink);
}

.header.scrolled .nav-cta:hover{
  background:rgba(255,255,255,.38);

  border-color:rgba(11,17,21,.42);
}

.header.scrolled .nav-cta span{
  color:var(--blue);
}


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

.menu-toggle{
  display:none;

  border:0;
  background:none;

  width:38px;
  height:38px;

  cursor:pointer;
}

.menu-toggle span{
  display:block;

  width:23px;
  height:1px;

  background:#fff;

  margin:7px auto;

  transition:.3s;
}


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

.hero{
  min-height:760px;
  height:100svh;

  position:relative;

  display:flex;
  align-items:center;

  background:#10171b;
  color:#fff;

  overflow:hidden;
}

.hero-media{
  position:absolute;
  inset:-3%;
}

.hero-media img{
  filter:brightness(.48) saturate(.8);

  transform:scale(1.04);

  animation:
    heroBreath 12s ease-in-out infinite alternate;
}

@keyframes heroBreath{
  from{
    transform:scale(1.04);
  }

  to{
    transform:scale(1.09);
  }
}

.hero-overlay{
  position:absolute;
  inset:0;

  background:
    radial-gradient(
      circle at 58% 45%,
      transparent 0,
      rgba(4,9,12,.08) 35%,
      rgba(4,9,12,.72) 100%
    ),
    linear-gradient(
      90deg,
      rgba(4,9,12,.82),
      rgba(4,9,12,.1) 72%
    ),
    linear-gradient(
      0deg,
      rgba(4,9,12,.7),
      transparent 48%
    );
}

.hero-frame{
  position:absolute;

  z-index:2;

  inset:24px;

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

  pointer-events:none;
}

.hero-content{
  position:relative;
  z-index:3;

  padding-top:70px;
}

.eyebrow{
  display:flex;
  align-items:center;
  gap:11px;

  font:
    700 8px Manrope,
    sans-serif;

  letter-spacing:.2em;
  text-transform:uppercase;

  color:#a4b0b5;
}

.eyebrow span{
  width:34px;
  height:1px;

  background:var(--blue);

  display:inline-block;
}

.eyebrow.dark{
  color:#8b979c;
}

.eyebrow.light{
  color:#b1bdc2;
}

.hero-title{
  font:
    700 clamp(58px,8vw,116px)/.86 Manrope,
    sans-serif;

  letter-spacing:-.075em;

  margin:25px 0 28px;

  max-width:900px;
}

.hero-title em{
  font-style:italic;

  color:#82d0f6;

  font-weight:500;
}

.hero-copy{
  max-width:570px;

  color:rgba(255,255,255,.72);

  font-size:14px;
  line-height:1.9;

  margin-bottom:28px;
}

.actions{
  display:flex;

  gap:12px;

  flex-wrap:wrap;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn{
  display:inline-flex;

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

  gap:22px;

  min-height:48px;

  padding:13px 17px;

  font:
    700 9px Manrope,
    sans-serif;

  letter-spacing:.05em;

  text-transform:uppercase;

  border:1px solid transparent;

  transition:.3s;
}

.btn-primary{
  background:var(--blue);

  color:#fff;
}

.btn-primary:hover{
  background:#fff;

  color:var(--ink);

  transform:translateY(-3px);
}

.btn-ghost{
  border-color:rgba(255,255,255,.35);

  color:#fff;
}

.btn-ghost:hover{
  background:#fff;

  color:var(--ink);

  transform:translateY(-3px);
}


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

.hero-bottom{
  position:absolute;

  z-index:3;

  left:0;
  right:0;
  bottom:25px;

  display:flex;

  justify-content:space-between;

  color:rgba(255,255,255,.48);

  font:
    700 7px Manrope,
    sans-serif;

  letter-spacing:.18em;
}

.scroll-label{
  display:flex;
  align-items:center;
  gap:10px;
}

.scroll-label b{
  color:var(--blue-light);

  font-size:13px;

  margin-left:6px;
}


/* =========================================================
   COMMON
   ========================================================= */

.section{
  padding:115px 0;
}

.section-heading{
  display:flex;

  justify-content:space-between;
  align-items:flex-end;

  gap:50px;

  margin-bottom:48px;
}

.section-heading h2,
.about-content h2,
.needs-intro h2{
  font:
    700 clamp(45px,5.8vw,78px)/.96 Manrope,
    sans-serif;

  letter-spacing:-.065em;

  margin-top:18px;
}

h2 em{
  font-style:italic;

  color:var(--blue);

  font-weight:500;
}

.heading-note{
  font:
    700 7px Manrope,
    sans-serif;

  letter-spacing:.17em;

  color:#89959b;

  padding-top:7px;

  white-space:nowrap;
}


/* =========================================================
   SERVICES
   ========================================================= */

.services{
  background:var(--paper);
}

.service-grid{
  display:grid;

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

  gap:12px;
}

.service-card{
  background:#fff;

  border:1px solid var(--line);

  overflow:hidden;

  transition:.45s cubic-bezier(.2,.7,.2,1);
}

.service-card-large{
  grid-column:span 7;
}

.service-card:nth-child(2),
.service-card:nth-child(3){
  grid-column:span 5;
}

.service-card:nth-child(4){
  grid-column:span 5;
}

.service-card-wide{
  grid-column:span 7;
}

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

  box-shadow:var(--shadow);
}

.service-image{
  height:270px;

  position:relative;

  overflow:hidden;

  background:#dfe5e7;
}

.service-card-large .service-image,
.service-card-wide .service-image{
  height:330px;
}


/* =========================================================
   SERVICE CARD SLIDESHOW
   ONLY ADDED FOR MOBILIER SUR MESURE
   ========================================================= */

.service-slideshow{
  position:relative;

  overflow:hidden;
}

.service-slideshow .slideshow-image{
  position:absolute;

  inset:0;

  width:100%;
  height:100%;

  object-fit:cover;

  opacity:0;

  transform:scale(1.02);

  transition:
    opacity .8s ease,
    transform 1.2s ease;

  pointer-events:none;
}

.service-slideshow .slideshow-image.active{
  opacity:1;

  transform:scale(1);
}

.service-card:hover .service-slideshow .slideshow-image.active{
  transform:scale(1.06);
}


/* Keep image label above slideshow */

.service-slideshow .image-label{
  z-index:5;
}


/* =========================================================
   NORMAL SERVICE IMAGES
   ========================================================= */

.service-image > img:not(.slideshow-image){
  transition:
    transform .9s cubic-bezier(.2,.7,.2,1);

  filter:saturate(.82);
}

.service-card:hover .service-image > img:not(.slideshow-image){
  transform:scale(1.06);
}

.service-slideshow .slideshow-image{
  filter:saturate(.82);
}

.image-label{
  position:absolute;

  left:16px;
  top:16px;

  width:31px;
  height:31px;

  display:grid;

  place-items:center;

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

  color:#fff;

  background:rgba(0,0,0,.2);

  backdrop-filter:blur(8px);

  font:
    700 8px Manrope,
    sans-serif;
}

.service-info{
  min-height:105px;

  padding:20px 20px 22px;

  display:flex;

  align-items:center;

  justify-content:space-between;

  gap:20px;
}

.service-info h3{
  font:
    700 21px Manrope,
    sans-serif;

  letter-spacing:-.03em;
}

.service-info p{
  max-width:410px;

  color:var(--muted);

  font-size:11px;

  line-height:1.7;

  margin-top:6px;
}

.service-arrow{
  font-size:20px;

  color:var(--blue);

  transition:.3s;
}

.service-card:hover .service-arrow{
  transform:translate(3px,-3px);
}

.section-link{
  margin-top:30px;
}


/* =========================================================
   ABOUT
   ========================================================= */

.about-strip{
  display:grid;

  grid-template-columns:1.08fr .92fr;

  min-height:680px;

  background:#fff;
}

.about-image{
  min-height:620px;

  overflow:hidden;
}

.about-image img{
  filter:saturate(.82);

  transition:transform 1.1s ease;
}

.about-image:hover img{
  transform:scale(1.04);
}

.about-content{
  padding:9vw 7vw;

  display:flex;

  flex-direction:column;

  justify-content:center;
}

.about-content>p:not(.eyebrow){
  max-width:470px;

  color:var(--muted);

  font-size:14px;

  line-height:1.9;

  margin:22px 0 0;
}

.about-content .text-link{
  margin-top:28px;

  align-self:flex-start;
}


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

.text-link{
  display:inline-flex;

  gap:18px;

  border-bottom:1px solid #aeb9be;

  padding-bottom:7px;

  font:
    700 9px Manrope,
    sans-serif;

  text-transform:uppercase;

  transition:.2s;
}

.text-link span{
  color:var(--blue);
}

.text-link:hover{
  border-color:var(--blue);

  transform:translateX(3px);
}


/* =========================================================
   NEEDS / SOLUTIONS
   ========================================================= */

.needs-section{
  padding:125px 0 110px;

  background:#e9eef0;

  position:relative;
}

.needs-intro{
  display:flex;

  align-items:flex-end;

  justify-content:space-between;

  gap:60px;

  margin-bottom:48px;
}

.needs-intro>p{
  max-width:420px;

  color:var(--muted);

  font-size:13px;

  line-height:1.9;

  padding-bottom:7px;
}

.needs-grid{
  display:grid;

  grid-template-columns:1.2fr 1fr 1fr;

  gap:12px;
}

.need-card{
  min-height:530px;

  position:relative;

  overflow:hidden;

  background:#172126;

  color:#fff;

  isolation:isolate;
}

.need-card img{
  position:absolute;

  inset:0;

  transition:
    transform 1s cubic-bezier(.2,.7,.2,1);

  filter:saturate(.72);
}

.need-card:hover img{
  transform:scale(1.07);
}

.need-shade{
  position:absolute;

  inset:0;

  z-index:1;

  background:
    linear-gradient(
      0deg,
      rgba(5,12,16,.92),
      rgba(5,12,16,.12) 75%
    );
}

.need-content{
  position:absolute;

  z-index:2;

  left:28px;
  right:28px;
  bottom:28px;
}

.need-tag{
  font:
    700 8px Manrope,
    sans-serif;

  letter-spacing:.17em;

  color:#a9b5ba;
}

.need-content h3{
  font:
    700 clamp(30px,3.3vw,48px)/.95 Manrope,
    sans-serif;

  letter-spacing:-.06em;

  margin:15px 0;
}

.need-content h3 em{
  font-style:italic;

  color:#7cccf4;

  font-weight:500;
}

.need-content p{
  max-width:390px;

  color:#c3cdd1;

  font-size:11px;

  line-height:1.75;

  margin-bottom:19px;
}

.need-link{
  display:inline-flex;

  gap:16px;

  align-items:center;

  font:
    700 8px Manrope,
    sans-serif;

  letter-spacing:.08em;

  text-transform:uppercase;
}

.need-link b{
  color:var(--blue-light);

  font-size:14px;

  transition:.3s;
}

.need-card:hover .need-link b{
  transform:translate(3px,-3px);
}

.needs-bottom{
  margin-top:27px;

  padding-top:20px;

  border-top:1px solid #cdd6d9;

  display:flex;

  align-items:center;

  justify-content:space-between;
}

.needs-bottom>span{
  font:
    700 7px Manrope,
    sans-serif;

  letter-spacing:.17em;

  color:#8b979c;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.final-cta{
  min-height:650px;

  position:relative;

  display:flex;

  align-items:center;

  justify-content:center;

  overflow:hidden;

  color:#fff;

  text-align:center;
}

.final-cta-bg{
  position:absolute;

  inset:0;
}

.final-cta-bg img{
  filter:
    brightness(.36)
    saturate(.65);

  transition:transform 1.2s ease;
}

.final-cta:hover .final-cta-bg img{
  transform:scale(1.04);
}

.final-cta-overlay{
  position:absolute;

  inset:0;

  background:
    radial-gradient(
      circle at center,
      rgba(5,12,16,.12),
      rgba(5,12,16,.78)
    );
}

.final-cta-inner{
  position:relative;

  z-index:2;

  display:flex;

  flex-direction:column;

  align-items:center;
}

.final-cta .eyebrow{
  justify-content:center;
}

.final-cta h2{
  font:
    700 clamp(50px,7vw,92px)/.9 Manrope,
    sans-serif;

  letter-spacing:-.07em;

  margin:23px 0 18px;
}

.final-cta h2 em{
  color:#7bcaf1;

  font-weight:500;
}

.final-cta-inner>p:not(.eyebrow){
  color:#c1cace;

  font-size:13px;

  margin-bottom:25px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer{
  background:var(--dark);

  color:#fff;

  padding:58px 0 24px;
}

.footer-main{
  display:grid;

  grid-template-columns:1.4fr 1fr 1fr 1fr;

  gap:45px;

  padding-bottom:45px;

  border-bottom:1px solid rgba(255,255,255,.1);
}

.footer-brand .brand{
  height:auto;
}

.footer-brand .brand-logo{
  width:145px;

  max-height:55px;
}

.brand-light{
  color:#fff;
}

.footer-brand p,
.footer-col p{
  color:#748188;

  font-size:10px;

  line-height:1.7;

  margin-top:15px;
}

.footer-col>span{
  display:block;

  font:
    700 8px Manrope,
    sans-serif;

  color:#7e8b91;

  letter-spacing:.15em;

  text-transform:uppercase;

  margin-bottom:13px;
}

.footer-col>a{
  display:block;

  font-size:10px;

  margin:9px 0;

  color:#dfe5e7;
}

.footer-col>a:hover{
  color:#6dc7f6;
}

.footer-bottom{
  display:flex;

  justify-content:space-between;

  gap:20px;

  padding-top:20px;

  color:#59666d;

  font-size:8px;
}


/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */

.whatsapp{
  position:fixed;

  z-index:900;

  left:22px;
  bottom:22px;

  background:#1ebc67;

  color:#fff;

  border-radius:99px;

  padding:12px 17px;

  font:
    700 9px Manrope,
    sans-serif;

  box-shadow:
    0 12px 30px rgba(30,188,103,.25);
}

.back-top{
  position:fixed;

  z-index:900;

  right:22px;
  bottom:22px;

  width:45px;
  height:45px;

  border:1px solid var(--line);

  background:#fff;

  border-radius:50%;

  opacity:0;

  visibility:hidden;

  transition:.3s;

  cursor:pointer;
}

.back-top.show{
  opacity:1;

  visibility:visible;
}


/* =========================================================
   REVEAL
   ========================================================= */

.reveal{
  opacity:0;

  transform:translateY(22px);

  transition:
    opacity .7s ease,
    transform .7s cubic-bezier(.2,.7,.2,1);
}

.reveal.visible{
  opacity:1;

  transform:none;
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media(max-width:950px){

  .header{
    background:#0b1115;
  }

  .nav-links{
    position:fixed;

    inset:82px 0 0 0;

    background:#0b1115;

    z-index:999;

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

    align-items:flex-start;

    padding:40px 30px;

    gap:24px;

    font-size:18px;

    transform:translateX(100%);

    transition:
      transform .45s ease;

    overflow-y:auto;
  }

  .nav-links.open{
    transform:translateX(0);
  }

  .nav-links a{
    opacity:1;

    width:100%;
  }

  .menu-toggle{
    display:block;
  }

  .header.scrolled .nav-links{
    color:#fff;
  }

  .header.scrolled .nav-links a{
    color:#fff;
  }

  .header.scrolled .nav-links a:hover,
  .header.scrolled .nav-links a.active{
    color:#fff;
  }

  .header.scrolled .menu-toggle span{
    background:#fff;
  }

  .brand-logo{
    width:128px;

    max-height:48px;
  }

  .section-heading{
    display:block;
  }

  .heading-note{
    margin-top:18px;
  }

  .service-card-large,
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4),
  .service-card-wide{
    grid-column:span 6;
  }

  .service-card-large{
    grid-column:span 12;
  }

  .service-card-wide{
    grid-column:span 12;
  }

  .about-strip{
    grid-template-columns:1fr;
  }

  .about-image{
    min-height:500px;
  }

  .about-content{
    padding:75px 8vw;
  }

  .needs-intro{
    display:block;
  }

  .needs-intro>p{
    margin-top:20px;
  }

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

  .need-card-featured{
    grid-column:span 2;
  }

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


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media(max-width:600px){

  .container{
    width:calc(100% - 32px);
  }

  .nav{
    height:70px;
  }

  .nav-links{
    inset:70px 0 0 0;
  }

  .brand-logo{
    width:112px;

    max-height:42px;
  }

  .footer-brand .brand-logo{
    width:130px;
  }

  .loader-logo{
    width:150px;
  }

  .hero{
    min-height:680px;
  }

  .hero-frame{
    inset:9px;
  }

  .hero-title{
    font-size:51px;
  }

  .hero-copy{
    font-size:12px;
  }

  .hero-bottom{
    left:16px;
    right:16px;
  }

  .hero-bottom>span:first-child{
    max-width:190px;

    line-height:1.6;
  }

  .scroll-label{
    display:none;
  }

  .section{
    padding:82px 0;
  }

  .section-heading h2,
  .about-content h2,
  .needs-intro h2{
    font-size:47px;
  }

  .service-grid{
    display:grid;

    grid-template-columns:1fr;
  }

  .service-card-large,
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4),
  .service-card-wide{
    grid-column:span 1;
  }

  .service-image,
  .service-card-large .service-image,
  .service-card-wide .service-image{
    height:260px;
  }

  .about-image{
    min-height:420px;
  }

  .about-content{
    padding:65px 25px;
  }

  .about-content h2{
    font-size:49px;
  }

  .needs-section{
    padding:85px 0;
  }

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

  .need-card,
  .need-card-featured{
    grid-column:span 1;

    min-height:470px;
  }

  .need-content{
    left:22px;
    right:22px;
    bottom:22px;
  }

  .needs-bottom{
    display:block;
  }

  .needs-bottom .text-link{
    margin-top:17px;
  }

  .final-cta{
    min-height:590px;
  }

  .final-cta h2{
    font-size:50px;
  }

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

  .footer-bottom{
    flex-direction:column;
  }

  .whatsapp{
    left:15px;
    bottom:15px;
  }

  .back-top{
    right:15px;
    bottom:70px;
  }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media(prefers-reduced-motion:reduce){

  *,
  *:before,
  *:after{

    animation:none!important;

    transition-duration:.01ms!important;

    scroll-behavior:auto!important;
  }
}

/* =========================================================
   TINK HOME — SAFE HOMEPAGE OVERRIDES
   These rules are intentionally appended so the shared
   stylesheet remains backwards-compatible with other pages.
   ========================================================= */


/* =========================================================
   MOBILE LOGO
   Slightly larger only on phones.
   Existing desktop/tablet sizing remains untouched.
   ========================================================= */

@media (max-width: 600px){

  .header .brand-logo{
    width:126px;
    max-height:46px;
  }

  .header .brand{
    display:flex;
    align-items:center;
  }

}


/* =========================================================
   PROJECT VALUES
   New homepage section
   ========================================================= */

.project-values{
  padding:110px 0 120px;
  background:var(--paper);
  border-top:1px solid var(--line);
}


.project-values-head{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(260px,.55fr);
  gap:70px;
  align-items:end;
  margin-bottom:55px;
}


.project-values-head h2{
  margin:14px 0 0;

  font:
    800 clamp(44px,5.2vw,78px)/.96
    Manrope,
    sans-serif;

  letter-spacing:-.055em;
  color:var(--ink);
}


.project-values-head h2 em{
  color:var(--blue);

  font:
    500 .78em/1.05
    "Playfair Display",
    serif;

  letter-spacing:-.025em;
}


.project-values-head > p{
  max-width:420px;
  margin:0;

  color:var(--muted);

  font-size:14px;
  line-height:1.8;
}


/* =========================================================
   VALUE CARDS
   ========================================================= */

.project-values-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);

  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}


.value-card{
  min-height:250px;

  padding:
    30px
    32px
    35px
    0;

  border-right:1px solid var(--line);
}


.value-card:not(:first-child){
  padding-left:32px;
}


.value-card:last-child{
  border-right:0;
}


.value-card > span{
  display:block;

  margin-bottom:48px;

  color:var(--blue);

  font:
    700 10px
    Manrope,
    sans-serif;

  letter-spacing:.12em;
}


.value-card h3{
  margin:0 0 12px;

  color:var(--ink);

  font:
    700 19px/1.2
    Manrope,
    sans-serif;

  letter-spacing:-.02em;
}


.value-card p{
  max-width:330px;

  margin:0;

  color:var(--muted);

  font-size:13px;
  line-height:1.75;
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

a:focus-visible,
button:focus-visible{
  outline:2px solid var(--blue);
  outline-offset:4px;
}


/* =========================================================
   HOMEPAGE TYPOGRAPHY REFINEMENT
   ========================================================= */

.home .chapter-head h2{
  text-wrap:balance;
}


.home .hero-copy{
  max-width:560px;
  line-height:1.7;
}


.home .hero-meta span{
  line-height:1.45;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width:950px){

  .project-values{
    padding:90px 0;
  }


  .project-values-head{
    grid-template-columns:1fr;
    gap:22px;
  }


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


  .value-card,
  .value-card:not(:first-child){

    min-height:auto;

    padding:28px 0;

    border-right:0;
    border-bottom:1px solid var(--line);
  }


  .value-card:last-child{
    border-bottom:0;
  }


  .value-card > span{
    margin-bottom:28px;
  }

}


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

@media (max-width:600px){

  .project-values{
    padding:78px 0 82px;
  }


  .project-values-head{
    margin-bottom:38px;
  }


  .project-values-head h2{
    font-size:46px;
  }


  .project-values-head > p{
    font-size:13px;
  }


  .value-card h3{
    font-size:18px;
  }

}