/* =========================================
   ABOUT PAGE — CLEAN REBUILD
========================================= */

.about-page {
  background: var(--mint);
  color: var(--navy);
}

.about-page p {
  line-height: 1.55;
}

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

.about-white {
  background: #fff;
}

.about-mint {
  background: var(--mint);
}

.about-dark {
  background: var(--navy);
  color: #fff;
}

.about-olive {
  background: var(--olive);
}

.about-navy-soft {
  background:
    radial-gradient(circle at 78% 20%, rgba(90, 157, 67, 0.2), transparent 34%),
    linear-gradient(135deg, var(--deep-navy), var(--navy));
  color: #fff;
}

/* SHARED HEADERS */

.about-section-head {
  margin-bottom: 42px;
}

.about-section-head.centered {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.about-section-head.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
  align-items: end;
}

.about-section-head h2,
.about-why-grid h2,
.about-belief-grid h2,
.about-contact-grid h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(2.25rem, 4vw, 3.65rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.about-section-head p,
.about-why-grid p,
.about-belief-grid p,
.about-contact-grid p {
  margin: 0;
  color: rgba(16, 35, 58, 0.75);
  font-size: 1.08rem;
}

.about-section-head p + p,
.about-belief-grid p + p {
  margin-top: 14px;
}

.about-dark .about-section-head h2,
.about-navy-soft .about-section-head h2,
.about-section-head.light h2 {
  color: #fff;
}

.about-dark .about-section-head p,
.about-navy-soft .about-section-head p,
.about-section-head.light p {
  color: rgba(255, 255, 255, 0.76);
}

/* HERO */

.about-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 72px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 18%, rgba(90, 157, 67, 0.24), transparent 34%),
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(135deg, var(--deep-navy), var(--navy));
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: 0.2;
  pointer-events: none;
}

.about-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 58px;
  align-items: center;
}

.about-hero-copy h1 {
  max-width: 650px;
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(3.1rem, 6vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.about-hero-copy h1 span {
  color: var(--lime);
}

.about-hero-sub {
  max-width: 680px;
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.28;
  font-weight: 900;
}

.about-hero-copy p:not(.about-hero-sub) {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.about-hero-card {
  padding: 26px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}

.about-hero-card-kicker {
  margin-bottom: 8px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-hero-card h2 {
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(1.75rem, 2.7vw, 2.55rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.about-hero-image {
  height: 330px;
  margin-bottom: 20px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-card p {
  margin: 0;
  padding: 20px;
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
}

/* MISSION */

.about-mission {
  background:
    linear-gradient(180deg, #fff 0%, var(--mint) 100%);
}

.about-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.about-mission-grid article {
  padding: 30px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(16, 35, 58, 0.08);
  box-shadow: 0 18px 42px rgba(13, 39, 63, 0.08);
}

.about-mission-grid span,
.about-help-grid span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 14px;
  background: rgba(59, 127, 50, 0.1);
  color: var(--green);
  font-weight: 900;
}

.about-mission-grid h3,
.about-help-grid h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.45rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.about-mission-grid p,
.about-help-grid p {
  margin: 0;
  color: rgba(16, 35, 58, 0.72);
}

/* WHY */

.about-why-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 54px;
  align-items: start;
}

.about-why-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.about-why-list div {
  padding: 24px;
  border-radius: 22px;
  background: var(--mint);
  border: 1px solid rgba(16, 35, 58, 0.08);
}

.about-why-list strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.about-why-list p {
  font-size: 1rem;
}

/* TEAM */

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.about-team-card {
  grid-column: span 2;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.13);
}

.about-team-card.featured {
  background: rgba(240, 231, 180, 0.11);
  border-color: rgba(240, 231, 180, 0.22);
}

.about-team-card img {
  width: 100%;
  height: 230px;
  display: block;
  margin-bottom: 22px;
  border-radius: 20px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
}

.about-team-label {
  margin-bottom: 8px;
  color: var(--lime);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.about-team-card h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1.55rem;
  letter-spacing: -0.035em;
}

.about-team-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

/* HELP */

.about-help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.about-help-grid article {
  padding: 28px;
  border-radius: 24px;
  background: var(--mint);
  border: 1px solid rgba(16, 35, 58, 0.08);
}

/* LIFE */

.about-life-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(16, 35, 58, 0.09);
  background: #fff;
}

.about-life-grid article {
  padding: 30px 26px;
  background: #fff;
  border-right: 1px solid rgba(16, 35, 58, 0.09);
}

.about-life-grid article:last-child {
  border-right: 0;
}

.about-life-grid span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  font-size: 1.65rem;
  font-weight: 900;
}

.about-life-grid h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.3rem;
}

.about-life-grid p {
  margin: 0;
  color: rgba(16, 35, 58, 0.72);
}

/* BELIEFS */

.about-belief-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.about-belief-card {
  padding: 34px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(16, 35, 58, 0.08);
  box-shadow: 0 24px 54px rgba(3, 20, 36, 0.1);
}

.about-belief-card h3 {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: 1.75rem;
  letter-spacing: -0.035em;
}

.about-belief-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-belief-card li {
  position: relative;
  padding-left: 30px;
  color: rgba(16, 35, 58, 0.82);
  font-weight: 800;
}

.about-belief-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 900;
}

/* SERVE */

.about-serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.about-serve-grid article {
  padding: 30px;
  border-radius: 24px;
  min-height: 220px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.about-serve-grid h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.about-serve-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

/* CONTACT */

.about-contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: start;
}

.about-email-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green);
  font-size: 1.18rem;
  font-weight: 900;
  text-decoration: none;
}

.about-email-link:hover {
  text-decoration: underline;
}

.about-phone {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green);
  font-size: 1.18rem;
  font-weight: 900;
  text-decoration: none;
}

.about-contact-form {
  padding: 30px;
  border-radius: 28px;
  background: var(--mint);
  border: 1px solid rgba(16, 35, 58, 0.08);
  box-shadow: 0 20px 48px rgba(13, 39, 63, 0.08);
}

.about-contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--navy);
  font-weight: 900;
}

.about-contact-form input,
.about-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 35, 58, 0.16);
  border-radius: 14px;
  padding: 14px 16px;
  color: var(--navy);
  background: #fff;
  font: inherit;
}

.about-contact-form textarea {
  resize: vertical;
}

.about-contact-form button {
  margin-top: 4px;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .about-mission-grid,
  .about-help-grid,
  .about-serve-grid {
    grid-template-columns: 1fr;
  }

  .about-why-grid,
  .about-belief-grid,
  .about-contact-grid,
  .about-section-head.split,
  .about-hero-grid {
    grid-template-columns: 1fr;
  }

  .about-team-card,
  .about-team-card.featured {
    grid-column: span 3;
  }

  .about-hero-card {
    max-width: 720px;
  }
}

@media (max-width: 780px) {
  .about-section {
    padding: 64px 0;
  }

  .about-hero {
    padding: 58px 0;
  }

  .about-hero-copy h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .about-hero-actions {
    flex-direction: column;
  }

  .about-hero-actions .btn {
    width: 100%;
  }

  .about-hero-card,
  .about-contact-form,
  .about-belief-card {
    padding: 22px;
  }

  .about-hero-image {
    height: 260px;
  }

  .about-why-list,
  .about-team-grid,
  .about-life-grid {
    grid-template-columns: 1fr;
  }

  .about-team-card,
  .about-team-card.featured {
    grid-column: span 1;
  }

  .about-life-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(16, 35, 58, 0.09);
  }

  .about-life-grid article:last-child {
    border-bottom: 0;
  }
}
