html,body,div,span,h1,h2,h3,p,a,img,section,article,header,footer{margin:0;padding:0;border:0}
*{box-sizing:border-box}
body{
  font-family:Arial, Helvetica, sans-serif;
  background:#ffffff;
  color:#1d1d1f;
  line-height:1.6;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{
  width:calc(100% - 32px);
  max-width:1120px;
  margin:0 auto;
}
.topbar{
  position:sticky;
  top:0;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid #e7dcc5;
  z-index:50;
}
.topbar-inner{
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.brand{
  font-size:24px;
  font-weight:700;
  color:#8b6a2b;
}
.top-btn,.btn{
  display:inline-block;
  padding:14px 22px;
  border-radius:14px;
  background:#b48a3c;
  color:#fff;
  font-weight:700;
  border:1px solid #b48a3c;
}
.btn-light{
  background:#fff;
  color:#8b6a2b;
}
.hero{
  padding:56px 0 28px;
  background:
    radial-gradient(circle at top left, rgba(180,138,60,.12), transparent 30%),
    radial-gradient(circle at bottom right, rgba(180,138,60,.08), transparent 28%),
    #fff;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:32px;
  align-items:center;
}
.pill{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid #e4d7ba;
  background:#fff8ea;
  color:#8b6a2b;
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.hero-text h1{
  font-size:60px;
  line-height:1.02;
  margin-top:16px;
  color:#111;
}
.hero-main{
  margin-top:18px;
  font-size:24px;
  font-weight:700;
}
.hero-sub{
  margin-top:8px;
  font-size:18px;
  color:#575757;
}
.buttons{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}
.logo-card,.card,.contact-box,.area{
  background:#fff;
  border:1px solid #ebdfcb;
  border-radius:24px;
  box-shadow:0 14px 40px rgba(0,0,0,.08);
}
.logo-card{padding:24px}
.logo-card img{border-radius:18px}
.section{padding:36px 0}
.section-soft{
  background:#fdfaf5;
  border-top:1px solid #f0e6d5;
  border-bottom:1px solid #f0e6d5;
}
.section-head{
  text-align:center;
  margin-bottom:24px;
}
.section-head h2{
  margin-top:14px;
  font-size:42px;
  color:#111;
}
.section-head p{
  margin-top:10px;
  color:#5b5b5b;
}
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.card{
  padding:26px;
}
.card-num{
  display:inline-flex;
  width:48px;
  height:48px;
  border-radius:14px;
  align-items:center;
  justify-content:center;
  background:#f9f2e3;
  color:#8b6a2b;
  font-weight:700;
  margin-bottom:16px;
}
.card h3,.contact-box h3{
  font-size:30px;
  margin-bottom:8px;
  color:#171717;
}
.card p,.contact-box p{
  color:#555;
}
.areas{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:16px;
}
.area{
  min-height:130px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:16px;
  font-size:28px;
  font-weight:700;
  color:#8b6a2b;
  text-align:center;
}
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
.contact-box{
  padding:26px;
}
.contact-box h3{
  margin-top:12px;
}
.footer{
  border-top:1px solid #eadfc9;
  padding:26px 0 36px;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}
.footer strong{
  font-size:24px;
  color:#8b6a2b;
}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
}
.footer-links a{
  font-weight:700;
  color:#8b6a2b;
}
.floating-call{
  position:fixed;
  right:20px;
  bottom:20px;
  width:60px;
  height:60px;
  border-radius:50%;
  background:#b48a3c;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  box-shadow:0 14px 30px rgba(180,138,60,.35);
}
.reveal{
  opacity:0;
  transform:translateY(16px);
  transition:all .6s ease;
}
.reveal.show{
  opacity:1;
  transform:translateY(0);
}
@media (max-width: 900px){
  .hero-grid,.cards,.areas,.contact-grid{grid-template-columns:1fr 1fr}
  .contact-grid{grid-template-columns:1fr}
}
@media (max-width: 700px){
  .topbar-inner,.footer-inner{flex-direction:column;align-items:flex-start}
  .hero-grid,.cards,.areas{grid-template-columns:1fr}
  .hero-text h1{font-size:42px}
  .section-head h2{font-size:34px}
}
