/* About Section Styles */
.about-section {
  background: var(--warm-white);
}

.about-section .section-title {
  font-family: var(--font-display);
  font-size: var(--section-h2);
}

.about-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-lg);
  align-items: start;
}

.about-image {
  width: 100%;
  border-radius: 4px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.about-body {
  font-family: var(--font-body);
  font-size: var(--body-lg);
  font-weight: 300;
  opacity: 0.8;
  line-height: 1.7;
}

.about-body p {
  margin-bottom: var(--space-sm);
}

.about-body p:last-child {
  margin-bottom: 0;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.stat-item {
  border-top: 1px solid var(--sandstorm);
  padding-top: 1.5rem;
}

.stat-item:first-child {
  border-top: none;
  padding-top: 0;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--muted-gold);
  line-height: 1.1;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--taupe);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Responsive Adjustments */
@media (max-width: 1023px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .about-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-md);
  }

  .stat-item {
    flex: 1 1 calc(50% - var(--space-md));
    border-top: 1px solid var(--sandstorm);
    padding-top: 1.5rem;
  }

  .stat-item:first-child {
    border-top: 1px solid var(--sandstorm);
    padding-top: 1.5rem;
  }
}

@media (max-width: 767px) {
  .about-section {
    padding: var(--space-md) 0;
  }

  .about-stats {
    flex-direction: column;
    gap: var(--space-md);
  }

  .stat-item {
    flex: 1 1 100%;
  }
}
