#about {
  padding: 120px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-left {}

.about-left .section-title {
  margin-bottom: 28px;
}

.about-body {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.about-body strong {
  color: var(--navy);
  font-weight: 500;
}

.about-values {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--light-gray);
}

.about-value {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--light-gray);
  transition: background var(--transition);
}

.about-value-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
  flex-shrink: 0;
}

.about-value-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.about-value-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Right side - visual panel */
.about-right {
  position: relative;
}

.about-visual {
  position: relative;
  background: var(--navy-deep);
  padding: 56px 52px;
  overflow: hidden;
}

.about-visual::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(184, 145, 42, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.about-visual-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-pillar {
  display: flex;
  align-items: center;
  gap: 24px;
}

.pillar-bar-wrap {
  flex: 1;
}

.pillar-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}

.pillar-bar {
  height: 2px;
  background: rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}

.pillar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 0;
  transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pillar-fill.animated {
  width: var(--fill-width);
}

.pillar-pct {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold-light);
  width: 48px;
  text-align: right;
  flex-shrink: 0;
}

.about-visual-footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
}

/* Decorative corner accent */
.about-visual-corner {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, transparent 50%, rgba(184, 145, 42, 0.12) 50%);
}

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