/* ---- structural / layout ---- */
.lzb-about .wrap {
  max-width: var(--maxw, 1180px);
  margin: 0 auto;
  padding: 0 26px;
}
.lzb-about section {
  padding: 90px 0;
}
.lzb-about .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-about .sec-tag:before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--brass, #c9a24b);
}
.lzb-about 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;
}

/* ---- about block ---- */
.lzb-about .about {
  background: var(--night, #0a1f17);
  color: var(--cream, #f7f3e8);
}
.lzb-about .about .sec-tag {
  color: var(--lawn, #3fa86a);
}
.lzb-about .about .sec-tag:before {
  background: var(--lawn, #3fa86a);
}
.lzb-about .about h2.big {
  color: var(--cream, #f7f3e8);
  margin-bottom: 24px;
}
.lzb-about .about h2.big .acc {
  color: var(--brass, #c9a24b);
}
.lzb-about .about-grid {
  display: grid;
  grid-template-columns: 1fr .65fr;
  gap: 60px;
  align-items: center;
}
.lzb-about .about .body {
  font-size: 16.5px;
  color: var(--cream-2, #ece4d2);
  opacity: .85;
  line-height: 1.65;
  margin-bottom: 18px;
}
.lzb-about .about-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--line, rgba(255,255,255,.08));
  border-radius: var(--r, 18px);
  padding: 34px;
}
.lzb-about .about-card h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--cream, #f7f3e8);
  margin-bottom: 20px;
  border-bottom: 2px solid var(--brass, #c9a24b);
  padding-bottom: 12px;
  display: inline-block;
}
.lzb-about .about-card .row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line, rgba(255,255,255,.08));
  font-size: 14px;
}
.lzb-about .about-card .row:last-child {
  border-bottom: 0;
}
.lzb-about .about-card .row span:first-child {
  color: var(--muted, #6f8478);
}
.lzb-about .about-card .row span:last-child {
  color: var(--cream, #f7f3e8);
  font-weight: 600;
  text-align: right;
}

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