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

/* About Hero Section */
.about-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(128, 32, 48, 0.05) 0%, rgba(168, 50, 72, 0.05) 100%);
  }
  
  .about-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  .about-hero__content h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.2;
  }
  
  .about-hero__content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 16px;
  }
  
  .about-hero__content p:last-child {
    margin-bottom: 0;
  }
  
  .about-hero__image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
  }
  
  .about-hero__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-promo) 0%, #f5dfe2 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
  }
  
  .about-hero__placeholder svg {
    width: 120px;
    height: 120px;
    color: var(--maroon);
    opacity: 0.3;
  }
  
  /* Mission Section */
  .about-mission {
    padding: 80px 0;
    background: var(--white);
  }
  
  .about-section-title {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .about-section-title h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
  }
  
  .about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
  }
  
  .about-card {
    padding: 40px 30px;
    background: var(--bg-cream);
    border-radius: var(--radius);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid var(--border-light);
  }
  
  .about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
  }
  
  .about-card__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
  }
  
  .about-card__icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
  }
  
  .about-card h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
  }
  
  .about-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
  }
  
  /* Why Choose Us Section */
  .about-why {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(128, 32, 48, 0.08) 0%, rgba(168, 50, 72, 0.08) 100%);
  }
  
  .about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 50px;
  }
  
  .about-feature {
    position: relative;
    padding-left: 100px;
  }
  
  .about-feature__number {
    position: absolute;
    left: 0;
    top: 0;
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--maroon);
    opacity: 0.15;
    line-height: 1;
  }
  
  .about-feature h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
  }
  
  .about-feature p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
  }
  
  /* CTA Section */
  .about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
    text-align: center;
    color: var(--white);
  }
  
  .about-cta__inner {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .about-cta h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
  }
  
  .about-cta p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.95;
  }
  
  .about-cta .btn {
    display: inline-block;
  }
  
  /* Button Styles (shared from main styles) */
  .btn {
    padding: 14px 40px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    transition: all var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
  }
  
  .btn--primary {
    background: var(--maroon);
    color: var(--white);
  }
  
  .btn--primary:hover {
    background: var(--maroon-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(128, 32, 48, 0.3);
  }
  
  .about-cta .btn--primary {
    background: var(--white);
    color: var(--maroon);
  }
  
  .about-cta .btn--primary:hover {
    background: var(--bg-cream);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .about-hero__inner {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  
    .about-hero__image {
      min-height: 300px;
    }
  
    .about-hero__placeholder svg {
      width: 80px;
      height: 80px;
    }
  
    .about-mission {
      padding: 60px 0;
    }
  
    .about-grid {
      gap: 30px;
    }
  
    .about-card {
      padding: 30px 20px;
    }
  
    .about-why {
      padding: 60px 0;
    }
  
    .about-features {
      gap: 40px;
    }
  
    .about-feature {
      padding-left: 80px;
    }
  
    .about-feature__number {
      font-size: 3rem;
    }
  
    .about-cta {
      padding: 60px 0;
    }
  
    .about-cta h2 {
      font-size: 1.8rem;
    }
  }
  
  @media (max-width: 480px) {
    .about-hero__content h1 {
      font-size: 1.8rem;
    }
  
    .about-section-title h2 {
      font-size: 1.5rem;
    }
  
    .about-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  
    .about-card {
      padding: 25px 15px;
    }
  
    .about-features {
      gap: 30px;
    }
  
    .about-feature {
      padding-left: 0;
    }
  
    .about-feature__number {
      position: relative;
      margin-bottom: 16px;
      font-size: 2.5rem;
      opacity: 0.2;
    }
  }