:root{
  --bg:#F9F9F7;
  --sage:#B2AC88;
  --rose:#DCAE96;
  --gold:#D4AF37;
  --text:#2F3632;
  --cloud:#E4E4E2;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  background:var(--bg);
  color:var(--text);
  font-family:'Inter',sans-serif;
  line-height:1.7;
}

/* ================= TYPOGRAPHY ================= */

h1,h2,h3{
  font-family:'Playfair Display',serif;
  font-weight:500;
  letter-spacing:-0.3px;
}

h1{font-size:52px;}
h2{font-size:36px;margin-bottom:16px;}
h3{font-size:22px;margin-bottom:10px;}

p{
  font-size:16px;
  opacity:0.95;
}

a{
  text-decoration:none;
  color:inherit;
}

/* ================= HEADER ================= */

header{
  background:rgba(249,249,247,0.96);
  backdrop-filter:blur(6px);
  position:sticky;
  top:0;
  z-index:100;
  padding:18px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-bottom:1px solid var(--cloud);
}

.logo{
  font-family:'Playfair Display',serif;
  font-size:22px;
  letter-spacing:1px;
}

nav a{
  margin-left:32px;
  font-weight:500;
  position:relative;
}

nav a::after{
  content:'';
  position:absolute;
  width:0;
  height:2px;
  background:var(--sage);
  bottom:-6px;
  left:0;
  transition:.3s;
}

nav a:hover::after{
  width:100%;
}

/* ================= SECTIONS ================= */

section{
  padding:90px 8%;
}

.page-hero{
  padding:120px 8% 80px;
  text-align:center;
  max-width:900px;
  margin:auto;
}

/* ================= HERO ================= */

.hero{
  min-height:90vh;
  background:
    linear-gradient(rgba(249,249,247,.75),rgba(249,249,247,.75)),
    url("../images/WhatsApp Image 2026-01-10 at 1.40.54 AM.jpg") center/cover;
  display:flex;
  align-items:center;
}

.hero-content{
  max-width:650px;
}

.hero p{
  margin:22px 0;
  font-size:18px;
}

.hero-trust span{
  display:inline-block;
  margin-right:18px;
  font-size:14px;
  font-weight:500;
  opacity:0.9;
}

/* ================= BUTTONS ================= */

.btn{
  display:inline-block;
  padding:14px 34px;
  border-radius:40px;
  margin-right:12px;
  font-weight:500;
  transition:.3s;
}

.btn-primary{
  background:var(--sage);
  color:white;
}

.btn-primary:hover{
  background:#9c9675;
}

.btn-outline{
  border:1px solid var(--sage);
}

.btn-outline:hover{
  background:var(--sage);
  color:white;
}

.small{
  padding:10px 22px;
  font-size:14px;
}

/* ================= GRID ================= */

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:28px;
  margin-top:40px;
}

.grid.two{
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
}

/* ================= CARDS ================= */

.card{
  background:white;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 40px rgba(0,0,0,.05);
  transition:.3s;
}

.card:hover{
  transform:translateY(-6px);
}

.card img{
  width:100%;
  height:260px;
  object-fit:cover;
}

.card p,
.card h3{
  padding:22px;
  text-align:center;
}

/* ================= PROJECTS ================= */

.project-card{
  border-radius:16px;
  overflow:hidden;
  background:white;
  box-shadow:0 8px 30px rgba(0,0,0,.05);
}

.project-card img{
  width:100%;
  height:280px;
  object-fit:cover;
}

.project-info{
  padding:18px;
}

/* ================= LISTS ================= */

ul{
  padding-left:18px;
}

ul li{
  margin-bottom:10px;
}

.bullet-large li{
  font-size:17px;
  margin-bottom:14px;
}

/* ================= STATS ================= */

.stats{
  background:white;
}

.stats strong{
  font-size:36px;
  display:block;
}

.stats span{
  font-size:14px;
  opacity:.85;
}

/* ================= FORM ================= */

.form-box{
  background:white;
  padding:36px;
  border-radius:20px;
  box-shadow:0 10px 40px rgba(0,0,0,.06);
}

form input,
form select{
  width:100%;
  padding:14px;
  margin-bottom:14px;
  border-radius:10px;
  border:1px solid var(--cloud);
  font-size:15px;
}

form button{
  width:100%;
}

/* ================= FOOTER CTA ================= */

.footer-cta{
  background:var(--sage);
  color:white;
  text-align:center;
  padding:90px 8%;
}

.footer-cta h2{
  color:white;
  margin-bottom:18px;
}

/* ================= FOOTER ================= */

footer{
  background:#2F3632;
  color:white;
  text-align:center;
  padding:40px;
  font-size:14px;
}

footer a{
  opacity:.9;
}

/* ================= WHATSAPP ================= */

.whatsapp{
  position:fixed;
  bottom:20px;
  right:20px;
  background:#25D366;
  color:white;
  padding:14px 20px;
  border-radius:50px;
  font-weight:600;
  box-shadow:0 10px 30px rgba(0,0,0,.2);
}
/* ================= MOBILE HEADER (DECORPOT STYLE) ================= */

.mobile-actions{
  display:none;
  align-items:center;
  gap:12px;
}

.whatsapp-btn{
  background:#25D366;
  color:white;
  padding:8px 14px;
  border-radius:20px;
  font-size:13px;
  font-weight:600;
}

.menu-toggle{
  font-size:26px;
  cursor:pointer;
  padding:6px 10px;
  border-radius:8px;
  border:1px solid var(--cloud);
}

/* MOBILE VIEW */
@media(max-width:768px){

  header{
    padding:14px 6%;
  }

  /* Show mobile actions */
  .mobile-actions{
    display:flex;
  }

  /* Hide desktop nav */
  nav{
    position:fixed;
    top:0;
    right:-100%;
    width:85%;
    height:100vh;
    background:var(--bg);
    display:flex;
    flex-direction:column;
    padding:100px 30px;
    transition:0.4s ease;
    box-shadow:-20px 0 40px rgba(0,0,0,0.12);
    z-index:200;
  }

  nav a{
    margin:18px 0;
    font-size:18px;
    font-weight:500;
  }

  nav.active{
    right:0;
  }

  .mobile-cta{
    margin-top:30px;
    text-align:center;
  }
}
.logo img {
  max-height: 192px;
  width: auto;
}
