html,body{margin:0;padding:0}
body{
  font-family: Arial, Helvetica, sans-serif;
  background:#ffffff;
  color:#111111;
  line-height:1.6;
}
*{box-sizing:border-box}
img{max-width:100%;display:block}
a{text-decoration:none;color:#9b6b12}
.container{
  width:min(1100px, calc(100% - 32px));
  margin:0 auto;
}
.header{
  position:sticky;
  top:0;
  z-index:100;
  background:#ffffff;
  border-bottom:1px solid #ececec;
}
.header-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  min-height:82px;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  color:#111111;
}
.brand img{
  width:58px;
  height:58px;
  object-fit:cover;
  border-radius:14px;
}
.brand h1{
  margin:0;
  font-size:1.15rem;
}
.brand p{
  margin:0;
  color:#666666;
  font-size:.92rem;
}
.nav{
  display:flex;
  gap:22px;
}
.nav a{
  color:#111111;
  font-weight:700;
}
.menu-btn{
  display:none;
  border:1px solid #dddddd;
  background:#ffffff;
  border-radius:10px;
  width:46px;
  height:46px;
  font-size:22px;
  cursor:pointer;
}
.hero{
  padding:56px 0 30px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:28px;
  align-items:center;
}
.hero-text,.hero-card,.card,.statement{
  border:1px solid #eadfca;
  border-radius:24px;
  background:#ffffff;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
}
.hero-text{
  padding:34px;
}
.badge{
  display:inline-block;
  padding:9px 14px;
  border-radius:999px;
  background:#f8f1e4;
  color:#8b6516;
  font-size:.92rem;
  font-weight:700;
}
.hero-text h2{
  font-size:3rem;
  margin:16px 0 8px;
}
.lead{
  font-size:1.15rem;
  color:#8b6516;
  font-weight:700;
  margin:0 0 10px;
}
.hero-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}
.btn{
  padding:14px 20px;
  border-radius:12px;
  font-weight:700;
}
.btn-dark{
  background:#111111;
  color:#ffffff;
}
.btn-light{
  background:#ffffff;
  color:#9b6b12;
  border:1px solid #e0d2b7;
}
.hero-card{
  padding:22px;
}
.hero-card img{
  border-radius:18px;
  width:100%;
}
.section{
  padding:26px 0;
}
.soft{
  background:#fcfaf6;
  border-top:1px solid #f1eadf;
  border-bottom:1px solid #f1eadf;
}
.two-cols{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}
.card{
  padding:28px;
}
.card h3,.section-title h3,.statement h3{
  margin-top:0;
  font-size:2rem;
}
.dark-card{
  background:#121212;
  color:#ffffff;
}
.dark-card p{color:#efefef}
.section-title{
  text-align:center;
  margin-bottom:20px;
}
.section-title p{
  color:#666666;
}
.grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.service{
  text-align:center;
}
.icon{
  width:62px;
  height:62px;
  margin:0 auto 14px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f8f1e4;
  color:#8b6516;
  font-size:1.5rem;
  font-weight:700;
}
.statement{
  padding:34px;
  text-align:center;
}
.contact-list{
  margin:0;
  padding-left:18px;
}
.center-card{
  text-align:center;
}
.mini-logo{
  width:170px;
  margin:0 auto 16px;
  border-radius:20px;
}
.footer{
  margin-top:16px;
  border-top:1px solid #ececec;
  background:#ffffff;
}
.footer-wrap{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:24px 0 34px;
}
@media (max-width: 900px){
  .hero-grid,.two-cols,.grid{
    grid-template-columns:1fr 1fr;
  }
}
@media (max-width: 700px){
  .menu-btn{display:block}
  .nav{
    display:none;
    position:absolute;
    left:16px;
    right:16px;
    top:82px;
    background:#ffffff;
    border:1px solid #ececec;
    border-radius:16px;
    padding:14px;
    flex-direction:column;
    gap:12px;
  }
  .nav.open{display:flex}
  .hero-grid,.two-cols,.grid,.footer-wrap{
    grid-template-columns:1fr;
    display:grid;
  }
  .hero-text h2{
    font-size:2.2rem;
  }
}
