/* ============ ABOUT ============ */
#about {
  padding: 100px 0;
}

.about-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-collage {
  position: relative;
}

.collage-grid {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 16px;
}

.collage-main {
  height: 380px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.collage-main img { width: 100%; height: 100%; object-fit: cover; }

.collage-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.collage-side > div {
  height: 182px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.collage-side img { width: 100%; height: 100%; object-fit: cover; }

.collage-badge {
  position: absolute;
  bottom: -24px; left: 32px;
  background: var(--teal-deep);
  color: var(--cream);
  padding: 18px 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 14px 35px rgba(38,36,31,0.22);
}

.badge-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--teal-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.badge-icon svg { width: 22px; height: 22px; }

.badge-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}

.about-copy {
  max-width: 480px;
}

.about-feats {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 32px 0;
}

.about-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feat-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feat-icon svg { width: 20px; height: 20px; }

.about-feat h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--teal-deep);
  margin: 0 0 4px;
}
.about-feat p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0;
}

.about-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.call-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.call-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.call-icon svg { width: 18px; height: 18px; }

.call-label { font-size: 11.5px; color: var(--ink-soft); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.04em; }
.call-num { font-size: 16px; font-weight: 700; color: var(--teal-deep); }

/* ============ OBJECTIVES REDESIGN (NON-GRID STREAM) ============ */
.ledger {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ledger-row {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 28px;
  box-shadow: 0 4px 16px rgba(38, 36, 31, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.ledger-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--teal) 0%, var(--gold) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ledger-row:hover {
  transform: translateX(6px);
  box-shadow: 0 14px 30px rgba(17, 94, 89, 0.12);
  border-color: rgba(17, 94, 89, 0.3);
}

.ledger-row:hover::before {
  opacity: 1;
}

.ledger-row .num {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
  background: var(--teal-pale);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.ledger-row:hover .num {
  background: var(--teal);
  color: #FFFFFF;
  transform: scale(1.06);
}

.ledger-row p {
  font-family: var(--font-body);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  line-height: 1.5;
}
