/* About page — modern layout */

:root {
  --about-gutter: 20px;
}

@media (min-width: 768px) {
  :root {
    --about-gutter: 64px;
  }
}

.about-page {
  padding-top: 4.25rem;
  background: #f9f9f9;
  min-height: 100vh;
  overflow-x: clip;
}

.about-page__container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero — matches services page */
.about-page-hero {
  position: relative;
  min-height: 280px;
  max-height: 420px;
  overflow: hidden;
  background: #014d33;
}

.about-page-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.about-page-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 4vw, 2.75rem) 0;
  background: linear-gradient(180deg, rgba(1, 30, 20, 0.25) 0%, rgba(1, 77, 51, 0.92) 100%);
  color: #ffffff;
}

.about-page-hero__label {
  display: inline-block;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f7af28;
  margin-bottom: 0.75rem;
}

.about-page-hero__title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  line-height: 1.1;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 0.75rem;
  max-width: 28rem;
}

.about-page-hero__lead {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  max-width: 40rem;
  margin: 0 0 1.75rem;
}

.about-page__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 36rem;
}

@media (min-width: 768px) {
  .about-page__stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
}

.about-page__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 0.875rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 3px solid #f7af28;
  backdrop-filter: blur(8px);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.about-page__stat:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(247, 175, 40, 0.4);
}

.about-page__stat-num {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.about-page__stat-num--iso {
  font-size: clamp(0.875rem, 2vw, 1rem);
  letter-spacing: 0.02em;
}

.about-page__stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.75);
}

/* Who we are — split layout */
.about-split {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.about-split__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

@media (min-width: 1024px) {
  .about-split__grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4rem;
  }
}

.about-split__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 560px;
  overflow: hidden;
  background: #014d33;
}

.about-split__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-split__locations {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(1, 102, 68, 0.92);
  color: #ffffff;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.625rem 1rem;
  backdrop-filter: blur(8px);
}

.about-split__locations .material-symbols-outlined {
  font-size: 1rem;
  color: #f7af28;
}

.about-split__badge {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  background: #ffffff;
  padding: 1.25rem 1.5rem;
  min-width: 140px;
  box-shadow: 0 12px 40px rgba(1, 102, 68, 0.15);
  border-left: 4px solid #f7af28;
}

.about-split__badge-num {
  display: block;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 700;
  color: #016644;
  margin-bottom: 0.25rem;
}

.about-split__badge-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: #3f4947;
  font-weight: 500;
}

.about-split__content {
  max-width: 36rem;
}

.about-split__label {
  display: block;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #016644;
  margin-bottom: 0.75rem;
}

.about-split__title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.15;
  font-weight: 600;
  color: #014d33;
  margin: 0 0 1.25rem;
}

.about-split__text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #3f4947;
  margin: 0 0 1rem;
}

.about-split__text:last-of-type {
  margin-bottom: 0;
}

.about-split__certs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.about-split__cert {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #014d33;
  background: #e8f5ef;
  border: 1px solid rgba(1, 102, 68, 0.15);
  padding: 0.4rem 0.75rem;
}

/* Mission & vision */
.about-mv {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  background: #f9f9f9;
  border-bottom: 1px solid #e2e8f0;
}

.about-mv__head {
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 36rem;
}

.about-mv__label {
  display: inline-block;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #016644;
  margin-bottom: 0.75rem;
}

.about-mv__heading {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.15;
  font-weight: 600;
  color: #014d33;
  margin: 0;
}

.about-mv__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .about-mv__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.about-mv__card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 2rem 1.75rem 1.75rem;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.about-mv__card:hover {
  transform: translateY(-4px);
  border-color: #f7af28;
  box-shadow: 0 16px 40px rgba(1, 102, 68, 0.1);
}

.about-mv__num {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(1, 102, 68, 0.25);
}

.about-mv__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1.25rem;
  background: #e8f5ef;
  color: #016644;
}

.about-mv__icon .material-symbols-outlined {
  font-size: 1.375rem;
}

.about-mv__title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #014d33;
  margin: 0 0 0.875rem;
}

.about-mv__text {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #3f4947;
  margin: 0;
}

/* Core values — reuses about-section.css card styles */
.about-page__values {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.about-page__values-head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 36rem;
}

.about-page__values-head .about-section__label {
  display: inline-block;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  color: #016644;
  margin-bottom: 1rem;
}

/* Our team */
.about-team {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  background: #f9f9f9;
  border-bottom: 1px solid #e2e8f0;
}

.about-team__head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 36rem;
}

.about-team__label {
  display: inline-block;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #016644;
  margin-bottom: 0.75rem;
}

.about-team__title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.15;
  font-weight: 600;
  color: #014d33;
  margin: 0 0 1rem;
}

.about-team__intro {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #3f4947;
  margin: 0;
  max-width: 34rem;
}

.about-team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .about-team__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .about-team__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.about-team__card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.about-team__card:hover {
  transform: translateY(-4px);
  border-color: #f7af28;
  box-shadow: 0 16px 40px rgba(1, 102, 68, 0.1);
}

.about-team__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ffffff;
  background: linear-gradient(145deg, #014d33 0%, #016644 55%, #01875a 100%);
  border-bottom: 3px solid #f7af28;
}

.about-team__avatar--photo {
  padding: 0;
  overflow: hidden;
  background: #014d33;
}

.about-team__avatar--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-team__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem 1.25rem 1.35rem;
  flex: 1;
  text-align: center;
}

.about-team__name {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #014d33;
  margin: 0;
  line-height: 1.3;
}

.about-team__role {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #016644;
  margin: 0;
}

/* Chairman's message */
.about-message {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  background: #f9f9f9;
}

.about-message__grid {
  display: grid;
  grid-template-columns: 1fr;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .about-message__grid {
    grid-template-columns: minmax(260px, 38%) 1fr;
  }
}

@media (min-width: 1024px) {
  .about-message__grid {
    grid-template-columns: minmax(320px, 40%) 1fr;
  }
}

.about-message__media {
  position: relative;
  min-height: 240px;
  background: #014d33;
}

@media (min-width: 768px) {
  .about-message__media {
    min-height: 100%;
  }
}

.about-message__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .about-message__media img {
    min-height: 100%;
  }
}

.about-message__body {
  padding: clamp(1.75rem, 3vw, 2.75rem);
}

.about-message__label {
  display: block;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #016644;
  margin-bottom: 0.5rem;
}

.about-message__title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: #014d33;
  margin: 0 0 1.5rem;
  line-height: 1.2;
}

.about-message__quote {
  margin: 0;
  padding: 0;
  border: none;
}

.about-message__quote p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #3f4947;
  margin: 0 0 1rem;
}

.about-message__lead {
  font-size: 1.0625rem;
  font-weight: 500;
  color: #014d33;
}

.about-message__sign {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e2e8f0;
}

.about-message__name {
  display: block;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #014d33;
  margin-bottom: 0.2rem;
}

.about-message__role {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  color: #765b00;
}

/* CTA band */
.about-cta-band {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  background: linear-gradient(135deg, #014d33 0%, #016644 55%, #01875a 100%);
}

.about-cta-band__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .about-cta-band__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}

.about-cta-band__title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.about-cta-band__text {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  max-width: 32rem;
}

.about-cta-band__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #014d33;
  background: #f7af28;
  padding: 1rem 1.75rem;
  transition: background 0.25s ease, transform 0.25s ease, gap 0.25s ease;
}

.about-cta-band__btn:hover {
  background: #ffffff;
  transform: translateY(-2px);
  gap: 0.75rem;
}

.about-page .nav-link--active {
  color: #014d33;
}

.about-page-hero__lead,
.about-split__text,
.about-mv__text,
.about-message__quote p {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}
