:root{
  --bg:#f7f4ee;
  --card:#ffffff;
  --text:#1b1b1b;
  --muted:#666;
  --accent:#c6a55b;
  --dark:#101820;
  --border:#e8dfcf;
  --shadow:0 10px 30px rgba(0,0,0,.08);
  --radius:18px;
  --phone:#1d4ed8;
  --wa:#1fa855;
  --max:1140px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.7;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

.container{
  width:min(var(--max), calc(100% - 28px));
  margin:auto;
}

.topbar{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}
.brand{
  font-size:1.15rem;
  font-weight:700;
  color:var(--dark);
}
.menu{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}
.menu a{
  padding:8px 12px;
  border-radius:10px;
  font-size:.96rem;
  color:#333;
  transition:.2s ease;
}
.menu a:hover,
.menu a.active{
  background:#efe7d7;
  color:#111;
}

.hero{
  color:#fff;
  background:
    linear-gradient(rgba(16,24,32,.62), rgba(16,24,32,.62)),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}
.hero-inner{
  min-height:78vh;
  display:flex;
  align-items:center;
  padding:72px 0;
}
.hero-box{
  max-width:760px;
}
.eyebrow{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  margin-bottom:18px;
  font-size:.92rem;
}
.hero h1{
  font-size:clamp(2rem,5vw,4rem);
  line-height:1.1;
  margin:0 0 16px;
}
.hero p{
  font-size:1.1rem;
  max-width:690px;
  margin:0 0 28px;
  color:#f3f3f3;
}
.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 22px;
  border-radius:12px;
  border:1px solid transparent;
  font-weight:700;
  transition:.2s ease;
}
.btn:hover{
  transform:translateY(-1px);
}
.btn-primary{
  background:var(--accent);
  color:#111;
}
.btn-secondary{
  background:transparent;
  color:#fff;
  border-color:#fff;
}
.notice{
  margin-top:16px;
  background:#fff8e8;
  border:1px solid #f0dfb3;
  color:#5b4b1d;
  padding:14px 16px;
  border-radius:14px;
  max-width:700px;
}

.page-hero{
  background:linear-gradient(135deg, #111927, #1f2c3b);
  color:#fff;
  padding:70px 0;
}
.page-hero h1{
  margin:0 0 12px;
  font-size:clamp(2rem,4vw,3.2rem);
}
.page-hero p{
  margin:0;
  color:#e7e7e7;
  max-width:760px;
}

section{
  padding:70px 0;
}
.section-head{
  text-align:center;
  margin-bottom:34px;
}
.section-head h2{
  font-size:clamp(1.6rem,3vw,2.4rem);
  margin:0 0 10px;
  color:var(--dark);
}
.section-head p{
  margin:0;
  color:var(--muted);
}

.stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:-34px;
}
.stat{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:22px 18px;
  text-align:center;
}
.stat strong{
  display:block;
  font-size:1.8rem;
  color:var(--dark);
}
.stat span{
  color:var(--muted);
  font-size:.95rem;
}

.grid-2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}
.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.split{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:24px;
  align-items:center;
}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:22px;
  box-shadow:var(--shadow);
}
.card h3{
  margin:0 0 10px;
  color:var(--dark);
  font-size:1.18rem;
}
.card p{
  margin:0;
  color:#444;
}
.card ul{
  margin:12px 0 0;
  padding-right:18px;
}
.card li{
  margin-bottom:6px;
  color:#444;
}

.about-box p{
  color:#444;
  margin:0 0 14px;
}
.feature-list{
  display:grid;
  gap:10px;
  margin-top:18px;
}
.feature{
  background:#fff;
  border:1px solid var(--border);
  border-radius:12px;
  padding:12px 14px;
}

.gallery{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.gallery figure{
  margin:0;
  overflow:hidden;
  border-radius:16px;
  border:1px solid var(--border);
  background:#fff;
  box-shadow:var(--shadow);
}
.gallery img{
  width:100%;
  height:250px;
  object-fit:cover;
}
.gallery figcaption{
  padding:12px 14px;
  font-size:.95rem;
  color:#333;
}

.reviews{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}
.review{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:18px;
  box-shadow:var(--shadow);
  color:#333;
}

.contact-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}
.contact-info p{
  margin:0 0 12px;
  color:#444;
}
form{
  display:grid;
  gap:12px;
}
input, textarea{
  width:100%;
  border:1px solid #d8d3ca;
  border-radius:12px;
  padding:14px;
  font:inherit;
  background:#fff;
}
textarea{
  min-height:140px;
  resize:vertical;
}

.footer{
  background:var(--dark);
  color:#fff;
  text-align:center;
  padding:28px 0 90px;
  margin-top:20px;
}
.footer p{
  margin:6px 0 0;
  color:#d8d8d8;
}

.floating{
  position:fixed;
  bottom:18px;
  z-index:2000;
  width:58px;
  height:58px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:24px;
  box-shadow:0 10px 24px rgba(0,0,0,.22);
}
.floating.whatsapp{
  right:18px;
  background:var(--wa);
}
.floating.phone{
  left:18px;
  background:var(--phone);
}

.top-contact{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.top-contact .mini-btn{
  border:1px solid var(--border);
  background:#fff;
  padding:8px 12px;
  border-radius:10px;
  font-size:.92rem;
}

@media (max-width: 960px){
  .stats,
  .grid-2,
  .grid-3,
  .split,
  .gallery,
  .reviews,
  .contact-wrap{
    grid-template-columns:1fr;
  }

  .hero-inner{
    min-height:68vh;
  }

  .gallery img{
    height:220px;
  }

  .nav{
    align-items:flex-start;
    flex-direction:column;
  }

  .top-contact{
    width:100%;
  }
}
