/* --- ABOUT SECTION --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-image-wrapper:hover img {
  transform: scale(1.05);
}

.about-image-frame {
  position: absolute;
  inset: 0;
  border: 3px solid var(--color-accent-sunset);
  border-radius: var(--radius-xl);
  transform: translate(15px, 15px);
  z-index: -1;
}

.about-image-badge {
  position: absolute;
  bottom: var(--space-5);
  right: var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
  box-shadow: var(--shadow-lg);
}

.about-image-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--color-accent-sunset);
}

.about-deco-contour {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 150px;
  opacity: 0.3;
  z-index: -1;
}

.about-text {
  font-size: var(--text-base);
  line-height: 1.8;
  margin-bottom: var(--space-5);
  color: var(--color-neutral-dark);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-8);
}

.about-stat {
  text-align: center;
}

.counter-box {
  background: var(--color-surface);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-spring), box-shadow var(--transition-base);
}

.counter-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.counter-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--color-primary-light);
  margin-bottom: var(--space-3);
}

.counter-number {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-accent-sunset);
  margin-bottom: var(--space-1);
}

.counter-label {
  font-size: var(--text-sm);
  color: var(--color-neutral-mid);
}

.about-deco-leaf {
  position: absolute;
  right: -30px;
  bottom: 100px;
  width: 80px;
  opacity: 0.15;
}
