:root{
  --ink:#17211d;
  --forest:#243b32;
  --green:#426655;
  --sand:#eee9df;
  --paper:#faf9f6;
  --gold:#b49152;
  --line:#d8d4ca;
  --muted:#66706b;
  --white:#fff;
  --serif:"Playfair Display",serif;
  --sans:"Inter",sans-serif
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  color:var(--ink);
  background:var(--paper);
  font-family:var(--sans);
  line-height:1.65
}

a{
  color:inherit;
  text-decoration:none
}

button,input,select,textarea{
  font:inherit
}

.shell{
  width:min(1160px,calc(100% - 40px));
  margin:auto
}

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(250,249,246,.96);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(12px)
}

.header-inner{
  height:76px;
  display:flex;
  align-items:center;
  gap:28px
}

.brand{
  display:flex;
  flex-direction:column;
  line-height:1.1;
  margin-right:auto
}

.brand strong{
  font:600 24px var(--serif)
}

.brand span{
  margin-top:5px;
  color:var(--muted);
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.15em
}

.desktop-nav{
  display:flex;
  gap:24px;
  font-size:14px;
  font-weight:600
}

.desktop-nav a:hover,
.footer-grid a:hover{
  color:var(--gold)
}

.language{
  display:flex;
  gap:6px;
  align-items:center
}

.language button{
  padding:2px;
  border:0;
  background:none;
  color:var(--muted);
  cursor:pointer
}

.language button.active{
  color:var(--ink);
  font-weight:700
}

.header-call{
  font-size:13px;
  font-weight:700
}

.menu-button{
  display:none;
  width:42px;
  height:42px;
  border:0;
  background:none
}

.menu-button span{
  display:block;
  width:24px;
  height:2px;
  background:var(--ink);
  margin:5px auto
}

.mobile-nav{
  padding:12px 20px 24px;
  border-top:1px solid var(--line)
}

.mobile-nav a{
  display:block;
  padding:11px 0;
  font-weight:600
}

.hero{
  background:var(--forest);
  color:var(--white);
  padding:84px 0
}

.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:64px;
  align-items:center
}

.eyebrow{
  margin:0 0 16px;
  color:var(--gold);
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.16em
}

.hero h1{
  max-width:760px;
  margin:0;
  font:600 clamp(42px,5.5vw,72px)/1.05 var(--serif)
}

.hero-lead{
  max-width:680px;
  margin:26px 0;
  font-size:18px;
  color:#dce3df
}

.actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px
}

.button{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  min-height:52px;
  padding:13px 22px;
  border:1px solid transparent;
  font-weight:700;
  cursor:pointer
}

.button.primary{
  background:var(--gold);
  color:#151914
}

.button.primary:hover{
  background:#c5a565
}

.button.light{
  border-color:#9eaaa4;
  color:white
}

.micro{
  color:#bdc8c2;
  font-size:13px
}

.image-placeholder{
  min-height:370px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.25);
  background:linear-gradient(145deg,#365346,#172a22);
  position:relative;
  overflow:hidden
}

.image-placeholder:after{
  content:"";
  position:absolute;
  inset:16px;
  border:1px solid rgba(255,255,255,.15)
}

.image-placeholder span{
  z-index:1;
  max-width:180px;
  text-align:center;
  color:#cbd5d0;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.14em
}

.service-strip{
  margin-top:-1px;
  background:white;
  border-bottom:1px solid var(--line)
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr)
}

.service-grid>a{
  padding:32px 26px;
  border-right:1px solid var(--line)
}

.service-grid>a:first-child{
  border-left:1px solid var(--line)
}

.service-grid b,
.steps b{
  color:var(--gold);
  font-size:12px
}

.service-grid h2{
  margin:7px 0;
  font:600 24px var(--serif)
}

.service-grid p{
  margin:0;
  color:var(--muted);
  font-size:14px
}

.section{
  padding:92px 0
}

.section h2{
  margin:0 0 24px;
  font:600 clamp(34px,4vw,50px)/1.15 var(--serif)
}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px
}

.tick-list{
  list-style:none;
  padding:0;
  margin:24px 0
}

.tick-list li{
  padding:10px 0 10px 27px;
  border-bottom:1px solid var(--line);
  position:relative
}

.tick-list li:before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--gold);
  font-weight:bold
}

.muted{
  background:var(--sand)
}

.steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:38px
}

.steps article{
  padding:28px;
  background:var(--paper);
  border-top:3px solid var(--green)
}

.steps h3{
  font:600 24px var(--serif)
}

.assessment{
  background:#f4f1ea
}

.assessment-card{
  padding:34px;
  background:white;
  border:1px solid var(--line)
}

.assessment-card h3{
  font:600 27px var(--serif)
}

.contact{
  background:var(--forest);
  color:white
}

.contact .eyebrow{
  color:#d6b87d
}

.contact-grid{
  display:grid;
  grid-template-columns:.7fr 1.3fr;
  gap:70px
}

.contact h2{
  font-size:48px
}

.contact p{
  color:#d2dbd6
}

.text-link{
  display:inline-block;
  border-bottom:1px solid var(--gold)
}

.job-form{
  display:grid;
  gap:17px
}

.job-form label{
  display:grid;
  gap:6px;
  color:#dce4df;
  font-size:13px;
  font-weight:600
}

.job-form input,
.job-form select,
.job-form textarea{
  width:100%;
  padding:13px;
  border:1px solid #708078;
  background:#fff;
  color:var(--ink);
  border-radius:0
}

.job-form small{
  font-weight:400
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px
}

.job-form .button{
  justify-self:start;
  border:0
}

footer{
  padding:48px 0;
  background:#111915;
  color:#c9d1cd
}

.footer-grid{
  display:grid;
  grid-template-columns:1.4fr .8fr .8fr;
  gap:50px
}

.footer-grid>div{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:8px
}

.footer-grid strong{
  font:600 26px var(--serif)
}

.footer-grid p{
  max-width:420px;
  color:#929e98;
  font-size:13px
}

.page-hero{
  padding:76px 0;
  background:var(--forest);
  color:white
}

.page-hero .shell{
  max-width:900px;
  margin-left:max(20px,calc((100vw - 1160px)/2))
}

.page-hero h1{
  margin:0;
  font:600 clamp(40px,6vw,68px)/1.05 var(--serif)
}

.page-hero p:not(.eyebrow){
  max-width:700px;
  color:#dce3df;
  font-size:18px
}

.content-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:60px
}

.cards{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px
}

.card{
  padding:26px;
  border:1px solid var(--line);
  background:white
}

.card h3{
  margin:0 0 8px;
  font:600 23px var(--serif)
}

.card p{
  margin:0;
  color:var(--muted)
}

.band{
  padding:38px 0;
  background:var(--gold);
  color:#17211d
}

.band .shell{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px
}

.band h2{
  margin:0;
  font:600 30px var(--serif)
}

.band .button{
  background:var(--forest);
  color:white
}

/* FOTOS DE PROYECTOS */
.photo-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px
}

.photo-row .image-placeholder{
  min-height:0;
  aspect-ratio:4/3;
  color:white
}

@media(max-width:900px){

  .desktop-nav,
  .header-call{
    display:none
  }

  .menu-button{
    display:block
  }

  .hero{
    padding:56px 0
  }

  .hero-grid,
  .split,
  .content-grid,
  .contact-grid{
    grid-template-columns:1fr;
    gap:38px
  }

  .image-placeholder--hero{
    min-height:280px
  }

  .service-grid{
    grid-template-columns:1fr 1fr
  }

  .steps{
    grid-template-columns:1fr
  }

  .footer-grid{
    grid-template-columns:1fr 1fr
  }

  .footer-grid>div:first-child{
    grid-column:1/-1
  }
}

@media(max-width:560px){

  .shell{
    width:min(100% - 28px,1160px)
  }

  .header-inner{
    height:68px;
    gap:14px
  }

  .brand strong{
    font-size:21px
  }

  .language{
    font-size:13px
  }

  .hero h1{
    font-size:42px
  }

  .hero-lead{
    font-size:16px
  }

  .actions{
    display:grid
  }

  .service-grid,
  .cards,
  .form-row,
  .footer-grid,
  .photo-row{
    grid-template-columns:1fr
  }

  .service-grid>a{
    border-left:1px solid var(--line)
  }

  .section{
    padding:64px 0
  }

  .contact h2{
    font-size:38px
  }

  .footer-grid>div:first-child{
    grid-column:auto
  }

  .band .shell{
    align-items:flex-start;
    flex-direction:column
  }
}

@media(prefers-reduced-motion:reduce){
  html{
    scroll-behavior:auto
  }
}