/* ============================================
   CZ Supply — About Page Styles
   ============================================ */

/* --- About Hero (Cream, not dark navy) --- */

.about-hero {
  background: var(--cream);
  color: var(--navy);
  padding: var(--sp-5xl) var(--sp-lg) var(--sp-4xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(var(--lavender-rgb), 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.about-hero .eyebrow {
  color: var(--lavender-dark);
  display: block;
  margin-bottom: var(--sp-lg);
}

.about-hero h1 {
  font-size: var(--fs-display);
  color: var(--navy);
  margin-bottom: var(--sp-md);
}

.about-hero-subtitle {
  font-size: var(--fs-body-lg);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: var(--lh-body);
}

/* --- Split Image Styling --- */

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 450px;
}

/* --- Split Content Styling --- */

.about-content p {
  color: var(--text-secondary);
  line-height: var(--lh-body);
  font-size: var(--fs-body-lg);
}

/* --- Craftsmanship Section --- */

.craft-item {
  padding: var(--sp-xl) var(--sp-lg);
}

.craft-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--lavender-rgb), 0.15);
  border-radius: 50%;
  margin: 0 auto var(--sp-lg);
  color: var(--lavender-light);
}

.craft-item h3 {
  color: var(--text-inverse);
  margin-bottom: var(--sp-md);
}

.craft-item p {
  color: rgba(250, 247, 242, 0.7);
  line-height: var(--lh-body);
  font-size: var(--fs-body);
}

/* --- Stats Section --- */

.about-stats {
  padding-top: var(--sp-4xl);
  padding-bottom: var(--sp-4xl);
}

/* --- Community Section --- */

.about-community {
  background: var(--surface-elevated);
}

.about-community h2 {
  margin-bottom: var(--sp-lg);
}

.about-community-text {
  font-size: var(--fs-body-lg);
  color: var(--text-secondary);
  line-height: var(--lh-body);
  max-width: 600px;
  margin: 0 auto var(--sp-2xl);
}

.about-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-lg);
  margin-bottom: var(--sp-md);
}

.about-social-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--lavender-light);
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}

.about-social-btn:hover {
  background: var(--lavender);
  color: var(--navy-dark);
  transform: translateY(-3px);
}

/* ============================================
   Responsive Breakpoints
   ============================================ */

@media (max-width: 900px) {
  .about-hero {
    padding: var(--sp-4xl) var(--sp-lg) var(--sp-3xl);
  }

  .about-image img {
    max-height: 380px;
  }

  .about-stats {
    padding-top: var(--sp-3xl);
    padding-bottom: var(--sp-3xl);
  }
}

@media (max-width: 600px) {
  .about-hero {
    padding: var(--sp-3xl) var(--sp-md) var(--sp-2xl);
  }

  .about-hero h1 {
    font-size: var(--fs-h1);
  }

  .about-image img {
    max-height: 300px;
  }

  .craft-item {
    padding: var(--sp-lg) var(--sp-md);
  }

  .about-social-btn {
    width: 44px;
    height: 44px;
  }
}
