.about-page {
  min-height: 100vh;
  background: #fefae0;
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.about-container--narrow {
  max-width: 1024px;
  text-align: center;
}

.about-section {
  padding: 80px 0;
}

.about-section--light {
  background: #ffffff;
}

.about-section--forest {
  background: #283618;
}

.about-section--cta {
  background: linear-gradient(90deg, #606c38, #bc6c25);
}

.about-section__heading {
  text-align: center;
  margin-bottom: 48px;
}

.about-section__heading--light {
  color: #ffffff;
}

.about-section__title {
  margin: 0 0 16px;
  font-size: 30px;
  font-weight: 700;
  color: #283618;
}

.about-section__title--light {
  color: #ffffff;
}

.about-section__subtitle {
  margin: 0 auto;
  max-width: 768px;
  font-size: 20px;
  color: #4b5563;
}

.about-section__subtitle--light {
  color: rgba(255, 255, 255, 0.7);
}

.about-section__lead {
  margin: 0 0 24px;
  font-size: 18px;
  color: #4b5563;
  line-height: 1.7;
}

.about-section__body {
  margin: 0;
  font-size: 18px;
  color: #4b5563;
  line-height: 1.7;
}

.about-hero {
  position: relative;
  overflow: hidden;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
}

.about-hero__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(40, 54, 24, 0.8), rgba(40, 54, 24, 0.9));
}

.about-hero__content {
  position: relative;
  padding: 200px 16px;
}

.about-hero__text {
  text-align: center;
}

.about-hero__title {
  margin: 0 0 24px;
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
}

.about-hero__subtitle {
  margin: 0 auto;
  max-width: 768px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.mission__grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

.mission__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mission__stat {
  border-radius: 16px;
  color: #ffffff;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.16);
}

.mission__stat--green {
  background: linear-gradient(135deg, #606c38, #283618);
}

.mission__stat--bronze {
  background: linear-gradient(135deg, #bc6c25, #8b4513);
}

.mission__stat--blue {
  background: linear-gradient(135deg, #0077b6, #023e8a);
}

.mission__stat--mix {
  background: linear-gradient(135deg, #606c38, #bc6c25);
}

.mission__stat-body {
  padding: 24px;
  text-align: center;
}

.mission__stat-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 12px;
  opacity: 0.8;
}

.mission__stat-value {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
}

.mission__stat-label {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.acg__grid {
  display: grid;
  gap: 24px;
}

.acg__card {
  height: 100%;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.08);
  transition: box-shadow 200ms ease;
}

.acg__card:hover {
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.14);
}

.acg__card-body {
  padding: 24px;
  text-align: center;
}

.acg__icon-wrap {
  display: inline-flex;
  padding: 12px;
  background: rgba(96, 108, 56, 0.1);
  border-radius: 16px;
  margin-bottom: 16px;
}

.acg__icon {
  width: 32px;
  height: 32px;
  color: #606c38;
}

.acg__title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  color: #283618;
}

.acg__description {
  margin: 0;
  color: #4b5563;
}

.timeline {
  position: relative;
}

.timeline__line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 2px;
  background: rgba(96, 108, 56, 0.2);
  display: none;
}

.timeline__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.timeline__item {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-direction: column;
}

.timeline__content {
  flex: 1;
  text-align: left;
}

.timeline__content--right {
  text-align: right;
}

.timeline__card {
  display: inline-block;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
}

.timeline__card-body {
  padding: 24px;
}

.timeline__year {
  margin: 0 0 8px;
  font-size: 30px;
  font-weight: 700;
  color: #bc6c25;
}

.timeline__title {
  margin: 0 0 4px;
  font-weight: 600;
  color: #283618;
}

.timeline__description {
  margin: 0;
  font-size: 14px;
  color: #4b5563;
}

.timeline__dot {
  display: none;
}

.timeline__spacer {
  display: none;
}

.team__grid {
  display: grid;
  gap: 32px;
}

.team__card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: #ffffff;
  backdrop-filter: blur(6px);
}

.team__card-body {
  padding: 24px;
  text-align: center;
}

.team__avatar {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  margin: 0 auto 16px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.2);
}

.team__name {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 700;
}

.team__role {
  margin: 0 0 12px;
  color: #bc6c25;
}

.team__bio {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.team__empty {
  grid-column: 1 / -1;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  padding: 40px 0;
}

.partners__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.partners__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
  transition: box-shadow 200ms ease, transform 200ms ease;
  text-decoration: none;
  color: inherit;
}

.partners__card:hover {
  box-shadow: 0 18px 26px rgba(0, 0, 0, 0.14);
  transform: translateY(-2px);
}

.partners__logo {
  height: 64px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.partners__placeholder {
  font-size: 14px;
  color: #9ca3af;
}

.partners__name {
  font-weight: 600;
  color: #283618;
}

.partners__empty {
  width: 100%;
  text-align: center;
  color: #6b7280;
  padding: 40px 0;
}

.contact__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.8);
}

.contact__subtitle {
  margin: 0 auto 32px;
  max-width: 720px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.contact__button {
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  background: transparent;
}

.contact__button--primary {
  background: #ffffff;
  color: #606c38;
}

.contact__button--primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.contact__button--ghost {
  color: #ffffff;
  border-color: #ffffff;
}

.contact__button--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.contact__button-inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact__button-icon {
  width: 16px;
  height: 16px;
}

@media (min-width: 640px) {
  .about-container {
    padding: 0 24px;
  }
}

@media (min-width: 768px) {
  .about-hero__content {
    padding: 190px 24px;
  }

  .about-hero__title {
    font-size: 60px;
  }

  .about-hero__subtitle {
    font-size: 24px;
  }

  .about-section__title {
    font-size: 36px;
  }

  .acg__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .timeline__line {
    display: block;
  }

  .timeline__item {
    flex-direction: row;
  }

  .timeline__item--reverse {
    flex-direction: row-reverse;
  }

  .timeline__dot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: #606c38;
    border-radius: 999px;
    z-index: 10;
  }

  .timeline__spacer {
    display: block;
    flex: 1;
  }

  .team__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .about-container {
    padding: 0 32px;
  }

  .mission__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

