*{box-sizing:border-box;margin:0;padding:0}
:root{
  --green:#1b2d20;
  --green2:#314b36;
  --cream:#f7efe3;
  --paper:#fffaf2;
  --ink:#1b251e;
  --muted:#66736b;
  --gold:#b38a44;
  --line:rgba(27,37,30,.14);
  --shadow:0 24px 70px rgba(44,34,20,.15);
}
html{scroll-behavior:smooth}
body{
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:var(--cream);
}
button{font-family:inherit}
.top-strip{
  background:linear-gradient(90deg,#142318,#223923);
  color:#fff;
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:11px 42px;
  font-size:14px;
}
.top-strip div{display:flex;gap:28px}
.header{
  background:rgba(255,250,242,.94);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:18px 42px;
  position:sticky;
  top:0;
  z-index:20;
}
.brand{
  display:flex;
  align-items:center;
  gap:16px;
  border:0;
  background:transparent;
  color:var(--ink);
  cursor:pointer;
  text-align:left;
}
.brand img{
  width:82px;
  height:82px;
  object-fit:cover;
  border-radius:50%;
  box-shadow:0 10px 30px rgba(0,0,0,.12);
}
.brand strong{
  display:block;
  font-family:Georgia,serif;
  font-size:30px;
  line-height:1;
}
.brand span span,
.brand span{
  color:var(--muted);
}
.brand span > span{
  display:block;
  margin-top:8px;
  font-size:16px;
}
.header nav{
  display:flex;
  gap:18px;
}
.header nav button{
  border:0;
  background:transparent;
  cursor:pointer;
  font-size:16px;
  color:#3a433d;
}
.header nav button:hover{
  color:var(--gold);
}
.whatsapp-btn,.primary{
  border:0;
  cursor:pointer;
  background:linear-gradient(135deg,var(--green2),var(--green));
  color:#fff;
  padding:15px 24px;
  border-radius:999px;
  font-weight:800;
  box-shadow:0 14px 34px rgba(27,45,32,.22);
}
.secondary{
  border:1px solid var(--ink);
  background:rgba(255,250,242,.55);
  color:var(--ink);
  padding:15px 24px;
  border-radius:999px;
  font-weight:800;
  cursor:pointer;
}
.full{width:100%}
.hero{
  min-height:670px;
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  align-items:center;
  background:
    radial-gradient(circle at left,rgba(179,138,68,.12),transparent 40%),
    linear-gradient(90deg,#f7efe3 0%,#f7efe3 45%,#efe4d4 45%,#efe4d4 100%);
}
.hero-copy{
  padding:70px 0 70px 72px;
  max-width:670px;
}
.label,.section-title span{
  display:inline-block;
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:12px;
  font-weight:900;
  color:var(--green2);
  margin-bottom:18px;
}
h1{
  font-family:Georgia,serif;
  font-size:clamp(58px,8vw,96px);
  line-height:.92;
  font-weight:500;
  letter-spacing:-3px;
}
.hero p,.enfoque p,.split p,.mco p,.contact p,.section-title p,.service-card p{
  color:var(--muted);
  font-size:18px;
  line-height:1.65;
}
.hero p{
  margin:28px 0 28px;
}
.features{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin:26px 0;
}
.features div{
  display:flex;
  gap:10px;
  align-items:center;
  font-weight:700;
}
.features span{
  width:42px;
  height:42px;
  border-radius:50%;
  display:grid;
  place-items:center;
  border:1px solid var(--gold);
  color:var(--gold);
}
.hero-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}
.hero-image{
  height:670px;
  overflow:hidden;
}
.hero-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
}
main section:not(.hero){
  width:min(1180px,calc(100% - 32px));
  margin-left:auto;
  margin-right:auto;
}
.section-title{
  text-align:center;
  margin-bottom:34px;
}
.section-title h2,.enfoque h2,.split h2,.mco h2,.contact h2{
  font-family:Georgia,serif;
  font-size:clamp(38px,5vw,58px);
  line-height:1.05;
  font-weight:500;
}
.services{
  margin-top:-48px;
  position:relative;
  z-index:4;
  background:#fffaf2;
  padding:34px;
  border-radius:34px;
  box-shadow:var(--shadow);
  border:1px solid var(--line);
}
.service-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:16px;
}
.service-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  overflow:hidden;
  text-align:center;
  box-shadow:0 16px 38px rgba(44,34,20,.10);
}
.service-card img{
  width:100%;
  height:170px;
  object-fit:cover;
}
.service-icon{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  margin:-27px auto 12px;
  background:#fffaf2;
  border:1px solid var(--line);
  border-radius:50%;
  position:relative;
  z-index:2;
  font-size:24px;
  color:var(--green2);
}
.service-card h3{
  font-family:Georgia,serif;
  font-size:23px;
  margin-bottom:8px;
  padding:0 12px;
}
.service-card p{
  font-size:14px;
  padding:0 14px 22px;
}
.enfoque,.split,.mco,.contact{
  margin-top:90px;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:40px;
  align-items:center;
}
.enfoque{
  border-top:1px solid var(--line);
  padding-top:60px;
}
.split{
  grid-template-columns:1fr 1fr;
}
.split img{
  width:100%;
  height:500px;
  object-fit:cover;
  border-radius:32px;
  box-shadow:var(--shadow);
}
.split-copy p{
  margin:18px 0 24px;
}
.gallery-section,.testimonials{
  margin-top:100px;
}
.gallery{
  display:grid;
  grid-template-columns:1.1fr .9fr .9fr;
  gap:16px;
}
.gallery figure{
  position:relative;
  min-height:300px;
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.gallery figure.large{
  grid-row:span 2;
  min-height:616px;
}
.gallery img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.gallery figure:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.55),transparent 55%);
}
figcaption{
  position:absolute;
  left:20px;
  bottom:20px;
  color:#fff;
  z-index:2;
  font-weight:800;
  font-size:19px;
}
.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.testimonial{
  background:#fffaf2;
  padding:26px;
  border-radius:24px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.testimonial p{
  color:var(--muted);
  line-height:1.65;
  font-size:17px;
}
.testimonial strong{
  display:block;
  margin-top:18px;
  color:var(--green2);
}
.mco,.contact{
  background:#fffaf2;
  padding:36px;
  border-radius:30px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.contact-card{
  display:grid;
  gap:14px;
  background:#fff;
  padding:28px;
  border-radius:24px;
  border:1px solid var(--line);
}
.contact-card strong{
  font-size:24px;
}
.contact-card span{
  color:var(--muted);
}
footer{
  width:min(1180px,calc(100% - 32px));
  margin:80px auto 34px;
  padding-top:24px;
  border-top:1px solid var(--line);
  display:grid;
  gap:6px;
}
footer span{
  color:var(--muted);
}
@media(max-width:1100px){
  .header nav{display:none}
  .service-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:850px){
  .top-strip{display:none}
  .header{padding:14px 18px}
  .brand img{width:58px;height:58px}
  .brand strong{font-size:22px}
  .brand span > span{font-size:13px}
  .whatsapp-btn{display:none}
  .hero{grid-template-columns:1fr;background:#f7efe3}
  .hero-copy{padding:50px 22px}
  .hero-image{height:520px}
  .features{grid-template-columns:1fr}
  .services{margin-top:24px}
  .service-grid,.gallery,.testimonial-grid,.enfoque,.split,.mco,.contact{grid-template-columns:1fr}
  .gallery figure.large{min-height:360px}
}
