/* =========================
   ABOUT PAGE TYPOGRAPHY
========================= */

.section-header {
  display: block;
  max-width: 820px;
  margin: 0 auto 24px;
  text-align: center;
}

.section-header > div {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-header h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 600;
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b8965a;
  opacity: 0.9;
}

.section-intro {
  display: block;
  max-width: 560px;
  margin: 10px auto 0;
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

/* =========================
   ABOUT TEXT BLOCK
========================= */

.content-card {
  padding: 28px;
  border-radius: 24px;
}

.content-card h3 {
  text-align: center;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.content-card p {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  max-width: 68ch;
}

.content-card p:last-child {
  margin-bottom: 0;
}

/* =========================
   GRID LAYOUT
========================= */

.grid-2 {
  margin-top: 28px;
  gap: 24px;
  justify-items: center;
}

.grid-2 .content-card {
  max-width: 520px;
  text-align: left;
}

/* =========================
   TEAM SECTION
========================= */

.services-grid {
  margin-top: 28px;
  gap: 24px;
  justify-items: center;
}

.service-card {
  max-width: 400px;
}

.service-card__body {
  padding: 24px 22px 22px;
  text-align: left;
}

.service-card__body h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.service-card__role {
  margin-bottom: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(184, 150, 90, 0.95);
}

.service-card__excerpt {
  font-size: 0.95rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.8);
}

.service-card__more p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.76);
}

/* Button refinement */
.service-card__toggle {
  margin-top: 16px;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
}

/* =========================
   SPACING / LAYOUT
========================= */

.site-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* =========================
   HOVER REFINEMENT
========================= */

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 150, 90, 0.5);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

/* =========================
   FINAL SECTION CENTERED
========================= */

.site-section:last-of-type .section-header {
  margin-bottom: 18px;
}

.site-section:last-of-type .content-card {
  max-width: 620px;
  margin: 28px auto 0;
  text-align: left;
  padding: 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  backdrop-filter: blur(10px);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 1024px) {
  .section-header {
    margin-bottom: 24px;
  }

  .section-header h2 {
    font-size: clamp(1.8rem, 5vw, 2.6rem);
  }

  .content-card {
    padding: 26px;
  }

  .service-card__body {
    padding: 22px 20px 20px;
  }

  .services-grid,
  .grid-2 {
    gap: 24px;
  }

  .site-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

@media (max-width: 640px) {
  .site-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .content-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .content-card p {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .section-intro {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .service-card__body {
    padding: 20px 18px 18px;
  }

  .service-card__body h3 {
    font-size: 1.12rem;
  }

  .services-grid,
  .grid-2 {
    gap: 20px;
  }

  .service-card__toggle {
    margin-top: 14px;
  }

  .site-section:last-of-type .content-card {
    margin-top: 24px;
    padding: 22px 18px;
  }
}
