:root{
  --bg:#F2E7DB;
  --alt:#E6D3BF;
  --brown:#6B3F1D;
  --dark:#2B1A0F;
  --white:#fff;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:-apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background:var(--bg);
  color:var(--dark);
  line-height:1.6;
}

a{color:var(--brown); text-decoration:none}

.container{
  width:min(1100px,92%);
  margin:auto;
}

/* Header */
.header{
  background:var(--alt);
  border-bottom:1px solid rgba(0,0,0,.1);
}
.header__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 0;
}
.brand__name{
  font-size:22px;
  font-weight:800;
}
.brand__sub{
  font-size:14px;
  opacity:.8;
}
.nav a{
  margin-left:20px;
  font-weight:600;
}

/* Hero */
.hero{
  padding:80px 0;
}
.hero h1{
  font-size:42px;
  margin-bottom:16px;
}
.lead{
  font-size:18px;
  max-width:700px;
}
.hero__cta{
  margin:30px 0;
}
.btn{
  display:inline-block;
  padding:14px 22px;
  background:var(--brown);
  color:var(--white);
  border-radius:8px;
  font-weight:700;
  margin-right:10px;
}
.btn--ghost{
  background:transparent;
  border:2px solid var(--brown);
  color:var(--brown);
}
.trust{
  display:flex;
  gap:20px;
  list-style:none;
  padding:0;
  font-weight:600;
}

/* Sections */
.section{
  padding:70px 0;
}
.section--alt{
  background:var(--alt);
}
h2{
  font-size:32px;
  margin-bottom:10px;
}
.muted{
  opacity:.75;
}

/* Grid */
.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.card{
  background:var(--white);
  padding:26px;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* Before After */
.ba{
  display:grid;
  gap:30px;
}
.ba__pair{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.ba__pair img{
  width:100%;
  height:320px;
  object-fit:cover;
  border-radius:12px;
}

/* Contact */
.contact p{
  margin:8px 0;
}

/* Footer */
.footer{
  background:#4A2A12;
  color:#fff;
  padding:30px 0;
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.footer__links a{
  color:#fff;
  margin-left:16px;
}

/* Mobile */
@media(max-width:900px){
  .grid{grid-template-columns:1fr}
  .ba__pair{grid-template-columns:1fr}
  .hero h1{font-size:32px}
  .nav{display:none}
}
