:root{
  --bg:#fff8f5;
  --card:#ffffff;
  --text:#2b1d1d;
  --muted:#7b6666;
  --line:#ead9d2;
  --primary:#b76e79;
  --primary-dark:#9d5863;
  --accent:#f6e7e3;
  --success:#1f8f5f;
  --danger:#c0392b;
  --shadow:0 10px 30px rgba(0,0,0,.08);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{
  margin:0;
  padding:0;
  font-family:Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
}

a{text-decoration:none;color:inherit}

.container{
  width:min(1100px, 92%);
  margin:0 auto;
}

header.hero{
  padding:48px 0 24px;
}

.topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo{
  width:52px;
  height:52px;
  border-radius:14px;
  background:linear-gradient(135deg,var(--primary),#d9a3aa);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-weight:bold;
  font-size:20px;
  box-shadow:var(--shadow);
}

.brand-text h1{
  margin:0;
  font-size:28px;
}

.brand-text p{
  margin:4px 0 0;
  color:var(--muted);
}

.btn{
  display:inline-block;
  padding:12px 18px;
  border-radius:12px;
  border:none;
  cursor:pointer;
  font-weight:700;
  transition:.2s ease;
}

.btn-primary{
  background:var(--primary);
  color:#fff;
}

.btn-primary:hover{
  background:var(--primary-dark);
}

.btn-light{
  background:#fff;
  color:var(--text);
  border:1px solid var(--line);
}

.hero-box{
  margin-top:24px;
  background:linear-gradient(135deg,#fff,#f9ece8);
  border:1px solid var(--line);
  border-radius:24px;
  padding:28px;
  box-shadow:var(--shadow);
}

.hero-box h2{
  margin:0 0 10px;
  font-size:34px;
  line-height:1.15;
}

.hero-box p{
  margin:0;
  color:var(--muted);
  max-width:760px;
  line-height:1.6;
}

.section{
  padding:28px 0 42px;
}

.section-title{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:12px;
  margin-bottom:18px;
  flex-wrap:wrap;
}

.section-title h3{
  margin:0;
  font-size:26px;
}

.section-title p{
  margin:6px 0 0;
  color:var(--muted);
}

.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
}

.card img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
  background:#f3f3f3;
}

.card-body{
  padding:18px;
}

.badge{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  background:var(--accent);
  color:var(--primary-dark);
  font-size:12px;
  font-weight:700;
}

.card h4{
  margin:12px 0 8px;
  font-size:20px;
}

.card p{
  margin:0 0 14px;
  color:var(--muted);
  line-height:1.5;
  min-height:48px;
}

.price-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:14px;
  font-weight:700;
}

.footer{
  padding:28px 0 40px;
  color:var(--muted);
  border-top:1px solid var(--line);
  margin-top:20px;
}

.empty{
  padding:30px;
  text-align:center;
  background:#fff;
  border:1px dashed var(--line);
  border-radius:18px;
  color:var(--muted);
}

@media (max-width: 900px){
  .grid{
    grid-template-columns:repeat(2,1fr);
  }

  .hero-box h2{
    font-size:28px;
  }
}

@media (max-width: 640px){
  .grid{
    grid-template-columns:1fr;
  }

  .brand-text h1{
    font-size:22px;
  }

  .hero-box{
    padding:22px;
  }

  .hero-box h2{
    font-size:24px;
  }
}


.heroImages{
  padding:30px 0;
}

.heroFlex{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  flex-wrap:wrap;
}

.heroPerson img{
  width:260px;
  border-radius:20px;
  box-shadow:var(--shadow);
}

.heroLogo img{
  width:260px;
}

/* mobile */
@media (max-width:768px){
  .heroFlex{
    flex-direction:column;
    text-align:center;
  }

  .heroPerson img,
  .heroLogo img{
    width:200px;
  }
}