/* ---- structural / layout ---- */
.lzb-review .wrap {
  max-width: var(--maxw, 1180px);
  margin: 0 auto;
  padding: 0 26px;
}
.lzb-review section {
  padding: 90px 0;
}
.lzb-review .sec-head {
  margin-bottom: 50px;
  max-width: 740px;
}
.lzb-review .sec-tag {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--fairway, #1f7a4d);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.lzb-review .sec-tag:before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--brass, #c9a24b);
}
.lzb-review h2.big {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 800;
  color: var(--ink, #0a1410);
  margin-bottom: 0;
  line-height: 1.04;
  letter-spacing: -.02em;
}
.lzb-review .sec-head p {
  margin-top: 16px;
  font-size: 16px;
  color: #46584d;
  margin-bottom: 0;
}

/* ---- reviews ---- */
.lzb-review .rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lzb-review .rev {
  background: #fff;
  border: 1px solid var(--line-dark, rgba(10,20,16,.12));
  border-radius: var(--r, 18px);
  padding: 26px;
  box-shadow: var(--shadow, 0 24px 60px -28px rgba(0,0,0,.55));
}
.lzb-review .rev .stars {
  color: var(--brass, #c9a24b);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.lzb-review .rev p {
  font-size: 14px;
  color: #3d4e44;
  line-height: 1.6;
  margin-bottom: 16px;
}
.lzb-review .rev .who {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--ink, #0a1410);
}
.lzb-review .rev .who span {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: var(--muted, #6f8478);
  margin-top: 2px;
}

@media(max-width:900px) {
  .lzb-review .rev-grid {
    grid-template-columns: 1fr;
  }
}
