/* About Us page — 2026 comp (hero layout + sections not covered by services-/projects-page.css) */
body.page-about.home-2026 {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* —— Hero (storefront + team photo); title + CTAs use .services-hero__* —— */
.about-hero {
  position: relative;
  z-index: 0;
  min-height: 68vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: -48px;
  padding: calc(48px + 88px) 24px 96px;
  overflow: hidden;
  background: var(--home-navy-deep);
}

.about-hero__bg {
  position: absolute;
  inset: -12px;
  background: var(--home-navy-deep) center / cover no-repeat;
  filter: none;
  transform: none;
  z-index: 0;
  opacity: 1;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  /* Match home / showroom / services / projects hero: light neutral scrim */
  background: linear-gradient(
    180deg,
    rgba(12, 14, 18, 0.14) 0%,
    rgba(6, 8, 11, 0.28) 100%
  );
  z-index: 1;
}

.about-hero .services-hero__inner {
  z-index: 2;
}

.about-hero__lead {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.15rem, 2.35vw, 2rem);
  font-weight: bold;
  line-height: 1.55;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.about-hero__credentials {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding-top: 34px;
}

@media (max-width: 991px) {
  .about-hero {
    margin-top: 0;
    padding: 100px 20px 72px;
    min-height: 58vh;
  }
}

/* License line below intro CTAs (same section as .services-intro) */
.about-intro__license {
  margin: 20px 0 0;
  font-size: 13px;
  color: #3d556d;
  font-weight: 600;
}

/* —— Leadership (navy band, two columns) —— */
.about-team {
  background: var(--home-navy);
  padding: 52px 20px 60px;
}

.about-team__section-title {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.about-team__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.about-team__card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.about-team__img {
  display: block;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.about-team__body {
  min-width: 0;
}

.about-team__heading {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(0.95rem, 1.35vw, 1.1rem);
  font-weight: 800;
  line-height: 1.35;
}

.about-team__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
}

@media (max-width: 767px) {
  .about-team__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-team__img {
    width: 100px;
    height: 100px;
  }
}

/* —— Video block spacing —— */
.about-videos.projects-videos {
  padding-top: 72px;
}

/* —— Why choose (navy); headings use .services-carousel-section__* —— */
.about-why__subtitle-spaced {
  margin-bottom: 18px;
}

.about-why {
  background: var(--home-navy);
  padding: 72px 20px 88px;
}

.about-why__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-why__body {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.65;
}

.about-why__list {
  margin: 0 0 20px;
  padding-left: 1.15rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.7;
}

.about-why__list li {
  margin-bottom: 6px;
}

.about-why__closing {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.about-why__license {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.about-why__figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.about-why__figure img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 991px) {
  .about-why__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-why__figure {
    order: -1;
    max-width: 560px;
    margin: 0 auto;
  }
}

/* Tan hero CTAs: keep icon + label colors identical to Services (guards against stray link styles) */
body.page-about.home-2026 .services-hero__phone-round,
body.page-about.home-2026 .services-hero__estimate {
  color: var(--home-white) !important;
}

body.page-about.home-2026 .services-hero__phone-round:hover,
body.page-about.home-2026 .services-hero__estimate:hover {
  color: var(--home-navy) !important;
}

@media (max-width: 767px) {
  .about-why {
    padding: 52px 14px 64px;
  }

  .about-team {
    padding: 44px 14px 52px;
  }
}

@media (max-width: 575px) {
  .about-videos.projects-videos {
    padding-top: 44px;
  }
}
