/**
 * About Page Styles
 * Hero, story, what we do, values, and CTA sections
 */

/* =============================
   Hero
   ============================= */

.about-hero {
  background: linear-gradient(135deg, var(--color-yellow) 0%, #fce97c 100%);
  padding: 80px 0 72px;
  text-align: center;
}

.about-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--color-amber);
  margin-bottom: 16px;
  line-height: 1.15;
}

.about-hero .about-tagline {
  font-size: 20px;
  color: #6b4800;
  opacity: 0.85;
  max-width: 520px;
  margin: 0 auto;
}

/* =============================
   Story / Mission
   ============================= */

.about-story-section {
  padding: 80px 0;
  background: var(--color-background);
}

/* Reuses .about-grid + .about-card from components.css */

.about-story-text h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.about-story-text .lead {
  font-size: 18px;
  margin-bottom: 12px;
}

.about-story-text p {
  color: #444;
  line-height: 1.75;
  margin-bottom: 12px;
}

.about-story-text p:last-child {
  margin-bottom: 0;
}

.about-story-text .short-statement {
  font-weight: 700;
  color: var(--color-amber);
  font-size: 17px;
  line-height: 1.6;
  margin-top: 20px;
}

.about-read-more {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: none;
}

.about-read-more:hover {
  text-decoration: underline;
}

/* =============================
   What We Do
   ============================= */

.about-what-section {
  padding: 80px 0;
  background: #fff;
}

.about-section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.about-section-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 40px;
}

.about-what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-what-card {
  background: var(--color-card);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: var(--shadow-base);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-what-icon {
  font-size: 2.4rem;
  line-height: 1;
}

.about-what-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-text);
}

.about-what-card p {
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.7;
  flex: 1;
}

/* =============================
   Our Values
   ============================= */

.about-values-section {
  padding: 80px 0;
  background: var(--color-background);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-value-card {
  background: var(--color-card);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: var(--shadow-base);
  border-top: 4px solid var(--color-amber);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-value-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--color-amber);
}

.about-value-card p {
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.7;
}

/* =============================
   CTA Banner
   ============================= */

.about-cta {
  background: linear-gradient(135deg, var(--color-yellow) 0%, #fce97c 100%);
  padding: 64px 0;
}

.about-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.about-cta h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-amber);
  margin-bottom: 8px;
}

.about-cta p {
  font-size: 16px;
  color: #6b4800;
  max-width: 520px;
}

/* =============================
   Responsive
   ============================= */

@media (max-width: 900px) {
  .about-what-grid,
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .about-cta p {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .about-hero {
    padding: 56px 0 48px;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

  .about-what-grid,
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-what-section,
  .about-values-section,
  .about-story-section {
    padding: 56px 0;
  }
}
