
:root{
  --brown:#8B5E3C;
  --brown-700:#6E452B;
  --text:#1f2937;
  --bg:#ffffff;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:'Inter',sans-serif;
  color:var(--text);
  background:var(--bg);
}

.hero{
  position:relative;
  width:100%;
  height:42vh;
  min-height:280px;
  max-height:520px;
  overflow:hidden;
}

.hero__img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.logo-wrap{
  display:flex;
  justify-content:center;
  margin-top:40px;
}

.logo{
  width:160px;
  height:160px;
  border-radius:50%;
  border:6px solid #fff;
  box-shadow:0 6px 20px rgba(0,0,0,.2);
}

.container{
  max-width:760px;
  margin:0 auto;
  padding:0 20px;
}

.icons{
  display:flex;
  justify-content:center;
  gap:16px;
  margin-top:20px;
}

.icon{
  width:56px;
  height:56px;
  border-radius:50%;
  display:grid;
  place-items:center;
  border:2px solid var(--brown);
  transition:transform .2s ease, background .2s ease;
}

.icon:hover{ transform:translateY(-2px); background:#fff7f0; }
.icon img{ width:28px; height:28px; }

.lead{
  margin:20px auto;
  text-align:center;
  font-size:1.05rem;
  max-width:62ch;
}

.links{
  display:grid;
  gap:12px;
  margin:18px 0 26px;
}

.btn{
  display:block;
  text-align:center;
  padding:14px 18px;
  background:var(--brown);
  color:#fff;
  text-decoration:none;
  font-weight:600;
  border-radius:14px;
  box-shadow:0 6px 16px rgba(139,94,60,.22);
}

.btn:hover{
  background:var(--brown-700);
}

.accordion summary{
  list-style:none;
  cursor:pointer;
}

.accordion summary::-webkit-details-marker { display:none; }

.map-wrap{
  margin-top:10px;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 4px 12px rgba(0,0,0,.1);
}

.footer{
  display:flex;
  justify-content:center;
  padding:20px 0;
}

.footer .pwer{
  font-weight:700;
  font-size:1rem;
  color:#000;
  text-decoration:none;
}
