/* =========================================
   ABOUT PAGE STYLES
   ========================================= */

/* About Section */
.about-section {
  padding: 88px 0;
}

/* Story blocks */
.about-block {
  max-width: 760px;
  margin: 0 auto;
}

.about-text-wrap .section-tag {
  margin-bottom: 10px;
}

.about-text-wrap h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  color: var(--charcoal);
  margin-bottom: 20px;
}

.about-text-wrap p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 16px;
}

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

/* Divider between blocks */
.about-divider {
  max-width: 760px;
  margin: 56px auto;
  border: none;
  border-top: 1px solid var(--light-gray);
}

/* Why Choose section */
.about-why {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-why .section-tag {
  margin-bottom: 10px;
}

.about-why h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  color: var(--charcoal);
  margin-bottom: 12px;
}

.about-why-intro {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 48px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.why-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.why-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.75;
}

/* CTA */
.about-cta {
  padding: 88px 24px;
  text-align: center;
}

.about-cta h2 {
  color: var(--white);
  font-size: clamp(26px, 4vw, 40px);
  margin-bottom: 16px;
}

.about-cta p {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .about-section { padding: 56px 0; }
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .about-cta { padding: 64px 20px; }
}
