/* ========================================
   ABOUT PAGE - BRAND COLOR SYSTEM
   ======================================== */

/* About Hero - Deep Plum Authority */
.about-hero {
  background: linear-gradient(135deg, var(--deep-plum) 0%, var(--deep-navy) 100%);
  padding: 6rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201, 160, 95, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.about-hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-hero h1 {
  color: var(--soft-cream);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
}

.about-hero .lead-text {
  color: var(--warm-sand);
  font-size: 1.375rem;
  line-height: 1.7;
}

/* Story Section - Warm Sand Background */
.about-story {
  background: var(--warm-sand);
  padding: var(--space-xl) 2rem;
}

.about-story-content {
  max-width: 900px;
  margin: 0 auto;
}

.story-badge {
  display: inline-block;
  background: var(--rich-gold);
  color: var(--deep-plum);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.about-story h2 {
  color: var(--deep-plum);
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 2rem;
}

.about-story p {
  color: var(--deep-navy);
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.story-highlight {
  background: var(--soft-cream);
  padding: 2.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--rich-gold);
  margin: 3rem 0;
  box-shadow: var(--shadow-md);
}

.story-highlight p {
  font-size: 1.375rem;
  font-style: italic;
  color: var(--deep-plum);
  margin-bottom: 0;
  font-weight: 500;
}

/* Mission Section - Deep Navy Authority */
.about-mission {
  background: var(--deep-navy);
  padding: var(--space-xl) 2rem;
  color: var(--soft-cream);
}

.about-mission-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-mission h2 {
  color: var(--soft-cream);
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 2rem;
}

.about-mission p {
  color: var(--warm-sand);
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.mission-divider {
  width: 100px;
  height: 3px;
  background: var(--rich-gold);
  margin: 3rem auto;
  border-radius: 2px;
}

/* Values Grid - Soft Cream Background */
.about-values {
  background: var(--soft-cream);
  padding: var(--space-xl) 2rem;
}

.about-values-content {
  max-width: 1200px;
  margin: 0 auto;
}

.values-header {
  text-align: center;
  margin-bottom: 4rem;
}

.values-header h2 {
  color: var(--deep-plum);
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
}

.values-header p {
  color: var(--deep-navy);
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
}

.values-header::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--rich-gold);
  margin: 2rem auto 0;
  border-radius: 2px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.value-card {
  background: var(--warm-sand);
  padding: 3rem;
  border-radius: 8px;
  border-left: 4px solid var(--rich-gold);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--bright-gold);
}

.value-icon {
  font-size: 2.5rem;
  color: var(--rich-gold);
  margin-bottom: 1.5rem;
  display: block;
}

.value-card h3 {
  color: var(--deep-plum);
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.value-card p {
  color: var(--deep-navy);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Call to Action - Warm Sand Background */
.about-cta {
  background: var(--warm-sand);
  padding: 5rem 2rem;
  text-align: center;
}

.about-cta h3 {
  color: var(--deep-plum);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.about-cta p {
  color: var(--deep-navy);
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.about-cta .btn-primary {
  font-size: 1.25rem;
  padding: 1.25rem 3rem;
}

/* Quote Block */
.about-quote {
  max-width: 800px;
  margin: 4rem auto;
  text-align: center;
  padding: 3rem;
  background: var(--deep-plum);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-quote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 6rem;
  color: var(--rich-gold);
  font-family: var(--font-serif);
  line-height: 1;
  opacity: 0.7;
}

.about-quote p {
  color: var(--soft-cream);
  font-size: 1.5rem;
  font-style: italic;
  font-family: var(--font-serif);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-quote cite {
  color: var(--rich-gold);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .about-hero {
    padding: 4rem 1.5rem 3rem;
    min-height: 45vh;
  }
  
  .about-story,
  .about-mission,
  .about-values,
  .about-cta {
    padding: var(--space-lg) 1.5rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .value-card {
    padding: 2rem;
  }
  
  .story-highlight {
    padding: 2rem;
  }
  
  .about-quote {
    padding: 2rem;
    margin: 3rem auto;
  }
  
  .about-quote::before {
    font-size: 4rem;
    top: -15px;
  }
  
  .about-quote p {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .value-card {
    padding: 1.5rem;
  }
  
  .value-icon {
    font-size: 2rem;
  }
  
  .story-highlight {
    padding: 1.5rem;
  }
  
  .story-highlight p {
    font-size: 1.125rem;
  }
}
