.about-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  margin-bottom: var(--space-16);
}

.about-hero__image-container {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.about-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(250, 247, 243, 0.95) 0%, rgba(250, 247, 243, 0.8) 50%, rgba(250, 247, 243, 0.4) 100%);
}

.about-hero__content {
  position: relative;
  padding-top: var(--space-24);
  padding-bottom: var(--space-16);
  max-width: 700px;
}

.breadcrumb {
  margin-bottom: var(--space-6);
}

.breadcrumb__list {
  display: flex;
  gap: var(--space-2);
  list-style: none;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.breadcrumb__item:not(:last-child)::after {
  content: "/";
  margin-left: var(--space-2);
  opacity: 0.5;
}

.breadcrumb__link:hover {
  color: var(--color-primary);
}

.about-hero__title {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-6);
  color: var(--color-text);
}

.about-hero__subtitle {
  font-size: var(--text-xl);
  color: var(--color-text);
  font-weight: 500;
  margin-bottom: var(--space-4);
  line-height: var(--leading-snug);
}

.about-hero__text {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
}

.about-section {
  padding: var(--space-16) 0;
}

.about-section:nth-child(even) {
  background-color: var(--color-gray-50);
}

.about-section__heading {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-6);
  color: var(--color-text);
}

.about-section__lead {
  font-size: var(--text-lg);
  color: var(--color-text);
  font-weight: 500;
  margin-bottom: var(--space-4);
}

.about-section__content p {
  margin-bottom: var(--space-4);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

.about-grid {
  display: grid;
  gap: var(--space-10);
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
}

.about-grid__image img {
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-grid__decorative {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8);
}

.heritage-stat {
  text-align: center;
  padding: var(--space-10);
  background-color: var(--color-primary-light);
  border-radius: var(--radius-full);
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.heritage-stat__number {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  color: var(--color-primary);
  font-weight: 600;
  display: block;
  line-height: 1;
}

.heritage-stat__label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-2);
}

.community-quote {
  background-color: var(--color-secondary-light);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--color-secondary);
  margin: 0;
}

.community-quote p {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  line-height: var(--leading-snug);
}

.community-quote cite {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-style: normal;
  font-weight: 500;
}

.card--transparent {
  background-color: transparent;
  box-shadow: none;
  border: none;
  padding: 0;
}

.card--secondary {
  background-color: var(--color-secondary-light);
  border-color: var(--color-secondary);
}

.card--highlight {
  background-color: var(--color-primary-light);
  border-color: var(--color-primary);
}

.card--cta {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-gray-50) 100%);
  border: 2px solid var(--color-gray-200);
}

.promise-list {
  list-style: none;
  margin: var(--space-6) 0;
  padding: 0;
}

.promise-list__item {
  padding: var(--space-4) 0;
  padding-left: var(--space-8);
  position: relative;
  border-bottom: 1px solid var(--color-gray-200);
}

.promise-list__item:last-child {
  border-bottom: none;
}

.promise-list__item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-success);
  color: white;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
}

.newsletter-form {
  margin-top: var(--space-8);
}

.newsletter-form__group {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .newsletter-form__group {
    flex-direction: row;
  }
}

.newsletter-form__input {
  flex: 1;
}

.newsletter-form__button {
  white-space: nowrap;
}

.newsletter-form__privacy {
  margin-top: var(--space-4);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
}

.newsletter-form__privacy a {
  text-decoration: underline;
  color: var(--color-primary);
}

.about-section__cta {
  margin-top: var(--space-6);
}

@media (max-width: 767px) {
  .about-hero__title {
    font-size: var(--text-4xl);
  }
  
  .about-hero__subtitle {
    font-size: var(--text-lg);
  }
  
  .about-section {
    padding: var(--space-10) 0;
  }
  
  .about-section__heading {
    font-size: var(--text-2xl);
  }
  
  .heritage-stat {
    width: 160px;
    height: 160px;
  }
  
  .about-grid--reversed .about-grid__content {
    order: -1;
  }
}