/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Left — Image */
.about-image-wrap {
  position: relative;
}

.about-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.25);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 3rem;
  height: 480px;
}

.about-image-frame img {
  width: 100%;
  max-width: 420px;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 12px rgba(10, 22, 40, 0.06));
}

.about-image-frame:hover img {
  transform: scale(1.04);
}

/* Gold accent block behind image */
.about-image-accent {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  width: 50%;
  height: 50%;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.25;
}

/* Floating stat card */
.about-stat-card {
  position: absolute;
  bottom: -1.25rem;
  right: 1.5rem;
  background: var(--navy);
  color: var(--white);
  padding: 1.125rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 168, 76, 0.30);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 170px;
}

.about-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.about-stat-text {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* Right — Content */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.about-content .section-title {
  margin-bottom: 0;
}

.about-lead {
  font-size: var(--text-lg);
  font-weight: 400;
  line-height: 1.7;
  color: var(--gray-dark);
}

.about-body {
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--gray);
}

/* Stats row */
.about-indicators {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
}

.about-indicator {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.about-indicator-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  min-width: 28px;
}

.about-indicator-line {
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.40;
  flex-shrink: 0;
}

.about-indicator-text {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
}

/* CTA link */
.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--navy);
  text-transform: uppercase;
  transition: var(--transition-fast);
  padding-bottom: 2px;
  border-bottom: 1.5px solid var(--navy);
}

.about-cta:hover {
  color: var(--gold);
  border-color: var(--gold);
  gap: 0.875rem;
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image-frame {
    height: 340px;
    padding: 2rem 1.5rem;
  }

  .about-image-frame img {
    max-width: 320px;
    max-height: 200px;
  }

  .about-stat-card {
    right: 1rem;
    bottom: -1rem;
  }
}

@media (max-width: 600px) {
  .about-image-frame {
    height: 260px;
    padding: 1.5rem 1rem;
  }

  .about-image-frame img {
    max-width: 240px;
    max-height: 150px;
  }

  .about-stat-card {
    right: 0.5rem;
    bottom: -1.25rem;
    padding: 0.875rem 1.25rem;
    min-width: 150px;
  }
}
