/* ============================================================
   About Page — Styles
   ============================================================ */

/* --- About Hero --- */
.about-hero {
  padding: 140px 0 60px;
  background: var(--bg-light);
}

.about-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.about-hero-content {
  max-width: 580px;
}

.about-hero-content h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--brand-black);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

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

.about-hero-logo {
  flex-shrink: 0;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  box-shadow: var(--shadow-sm);
}

.about-hero-logo img {
  height: 60px;
  width: auto;
}

/* --- Story Section --- */
.about-story {
  background: var(--bg-white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}

.story-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--brand-black);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.story-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.story-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fact-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}

.fact-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brand-black);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fact-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* --- Offering Section --- */
.about-offering {
  background: var(--bg-light);
}

.offering-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.offering-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all 0.3s ease;
}

.offering-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.offering-card.highlight {
  border-color: var(--brand-yellow);
  background: linear-gradient(135deg, #fffdf0 0%, var(--bg-card) 100%);
}

.offering-icon {
  margin-bottom: 16px;
  color: var(--brand-black);
}

.offering-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brand-black);
  margin-bottom: 8px;
}

.offering-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.offering-card .text-link {
  color: var(--brand-black);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: underline;
  text-decoration-color: var(--brand-yellow);
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.offering-card .text-link:hover {
  color: var(--brand-yellow-dark);
}

/* --- Values Section --- */
.about-values {
  background: var(--bg-white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 32px 24px;
}

.value-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-yellow-light);
  border-radius: 50%;
  margin: 0 auto 20px;
  color: var(--brand-black);
}

.value-icon svg {
  width: 24px;
  height: 24px;
}

.value-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-black);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .about-hero-inner {
    flex-direction: column;
    text-align: center;
  }
  .story-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 120px 0 48px;
  }
  .offering-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .story-facts {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 480px) {
  .story-facts {
    grid-template-columns: repeat(2, 1fr);
  }
}
