.about-page {
  background: #ffffff;
}

.about-container {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding-right: 24px;
  padding-left: 24px;
}

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: currentColor;
}

.about-hero {
  position: relative;
  display: flex;
  min-height: 560px;
  align-items: flex-end;
  overflow: hidden;
  background: var(--color-navy);
  padding-top: 118px;
}

.about-hero__media,
.about-hero__overlay {
  position: absolute;
  inset: 0;
}

.about-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
}

.about-hero__overlay {
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.7) 46%, rgba(15, 23, 42, 0.28) 100%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.12) 20%, rgba(15, 23, 42, 0.72) 100%);
}

.about-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 92px;
  padding-bottom: 72px;
}

.about-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.about-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.about-breadcrumb a:hover {
  color: #ffffff;
}

.about-breadcrumb .material-symbols-outlined {
  font-size: 16px;
}

.about-hero .about-eyebrow {
  color: #ff8a52;
}

.about-hero h1 {
  max-width: 820px;
  margin-top: 18px;
  color: #ffffff;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 54px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.about-hero p {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.7;
}

.about-profile {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  background: #ffffff;
}

.about-profile__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  gap: 72px;
  align-items: center;
}

.about-profile__visual {
  position: relative;
  min-height: 590px;
  padding-right: 86px;
  padding-bottom: 64px;
}

.about-profile__visual-main {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 526px;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.about-profile__visual-secondary {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 43%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 8px solid #ffffff;
  border-radius: var(--radius-md);
  background: #ffffff;
}

.about-profile__visual-secondary img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-profile__content {
  position: relative;
}

.about-profile__content h2,
.about-role__header h2,
.about-network__header h2,
.about-strengths__header h2 {
  color: var(--color-navy);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
}

.about-profile__content h2 {
  max-width: 640px;
  margin-top: 18px;
}

.about-profile__lead {
  margin-top: 24px;
  color: var(--color-slate);
  font-size: 18px;
  line-height: 1.72;
}

.about-profile__copy {
  margin-top: 18px;
  color: #64748b;
  font-size: 16px;
  line-height: 1.72;
}

.about-profile__points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 28px;
  margin-top: 30px;
}

.about-profile__point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--color-navy);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.about-profile__point .material-symbols-outlined {
  margin-top: 1px;
  color: var(--color-primary);
  font-size: 20px;
}

.about-profile__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  margin-top: 34px;
  border-radius: var(--radius-md);
  background: var(--color-primary);
  padding: 0 22px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.25s ease;
}

.about-profile__action:hover {
  background: var(--color-primary-dark);
}

.about-profile__action .material-symbols-outlined {
  font-size: 18px;
}

.about-profile__watermark {
  position: absolute;
  right: -80px;
  bottom: -96px;
  width: 300px;
  opacity: 0.055;
  pointer-events: none;
}

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

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-stat {
  position: relative;
  min-height: 168px;
  padding: 34px 28px;
}

.about-stat + .about-stat {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.about-stat__value {
  color: #ffffff;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.about-stat__label {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.5;
}

.about-stat::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 0;
  left: 28px;
  height: 3px;
  background: var(--color-primary);
  transform: scaleX(0.25);
  transform-origin: left;
}

.about-role {
  padding: 104px 0;
  background: #f8fafc;
}

.about-role__header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.6fr);
  gap: 56px;
  align-items: end;
}

.about-role__header h2 {
  max-width: 720px;
  margin-top: 18px;
}

.about-role__header > p {
  color: #64748b;
  font-size: 16px;
  line-height: 1.72;
}

.about-role__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 58px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.about-role__item {
  padding: 34px 34px 38px 0;
}

.about-role__item + .about-role__item {
  border-left: 1px solid var(--color-border);
  padding-left: 34px;
}

.about-role__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(228, 90, 32, 0.1);
  color: var(--color-primary);
}

.about-role__icon .material-symbols-outlined {
  font-size: 24px;
}

.about-role__item h3 {
  margin-top: 24px;
  color: var(--color-navy);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.about-role__item p {
  margin-top: 14px;
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
}

.about-network {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.88)),
    url("../images/contact-map.webp") center / cover no-repeat;
}

.about-network__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  gap: 72px;
  align-items: center;
}

.about-network__header .about-eyebrow {
  color: #ff8a52;
}

.about-network__header h2 {
  max-width: 620px;
  margin-top: 18px;
  color: #ffffff;
}

.about-network__header > p {
  max-width: 600px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.72;
}

.about-network__image {
  position: relative;
  margin-top: 34px;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.about-network__image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.about-network__locations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.about-location {
  min-height: 190px;
  padding: 28px 26px 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.about-location:nth-child(even) {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  padding-right: 0;
  padding-left: 26px;
}

.about-location__number {
  color: var(--color-primary-light);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.about-location h3 {
  margin-top: 18px;
  color: #ffffff;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.about-location p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.65;
}

.about-strengths {
  padding: 104px 0;
  background: #ffffff;
}

.about-strengths__header {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.about-strengths__header .about-eyebrow {
  justify-content: center;
}

.about-strengths__header h2 {
  margin-top: 18px;
}

.about-strengths__header p {
  margin-top: 20px;
  color: #64748b;
  font-size: 16px;
  line-height: 1.72;
}

.about-strengths__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 56px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.about-strength {
  padding: 32px 26px;
}

.about-strength + .about-strength {
  border-left: 1px solid var(--color-border);
}

.about-strength .material-symbols-outlined {
  color: var(--color-primary);
  font-size: 28px;
}

.about-strength h3 {
  margin-top: 20px;
  color: var(--color-navy);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0;
}

.about-strength p {
  margin-top: 12px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.65;
}

.about-cta {
  position: relative;
  overflow: hidden;
  background: var(--color-navy);
}

.about-cta__media,
.about-cta__overlay {
  position: absolute;
  inset: 0;
}

.about-cta__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

.about-cta__overlay {
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96) 0%, rgba(15, 23, 42, 0.8) 55%, rgba(15, 23, 42, 0.4) 100%);
}

.about-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 390px;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-top: 72px;
  padding-bottom: 72px;
}

.about-cta__copy {
  max-width: 760px;
}

.about-cta__copy .about-eyebrow {
  color: #ff8a52;
}

.about-cta__copy h2 {
  margin-top: 18px;
  color: #ffffff;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
}

.about-cta__copy p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.7;
}

.about-cta__button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  border-radius: var(--radius-md);
  background: var(--color-primary);
  padding: 0 24px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.25s ease;
}

.about-cta__button:hover {
  background: var(--color-primary-dark);
}

.about-cta__button .material-symbols-outlined {
  font-size: 18px;
}

@media (max-width: 1100px) {
  .about-profile__layout,
  .about-network__layout {
    gap: 48px;
  }

  .about-profile__visual {
    min-height: 520px;
    padding-right: 54px;
  }

  .about-profile__visual-main {
    min-height: 456px;
  }

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

  .about-strength:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--color-border);
  }

  .about-strength:nth-child(4) {
    border-top: 1px solid var(--color-border);
  }
}

@media (max-width: 900px) {
  .about-profile__layout,
  .about-role__header,
  .about-network__layout {
    grid-template-columns: 1fr;
  }

  .about-profile__visual {
    min-height: 560px;
  }

  .about-profile__visual-main {
    min-height: 496px;
  }

  .about-profile__content {
    max-width: 760px;
  }

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

  .about-stat:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .about-stat:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .about-role__grid {
    grid-template-columns: 1fr;
  }

  .about-role__item,
  .about-role__item + .about-role__item {
    padding: 30px 0;
    border-left: 0;
  }

  .about-role__item + .about-role__item {
    border-top: 1px solid var(--color-border);
  }

  .about-network__header {
    max-width: 760px;
  }

  .about-cta__inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .about-container {
    padding-right: 16px;
    padding-left: 16px;
  }

  .about-hero {
    min-height: 500px;
    padding-top: 88px;
  }

  .about-hero__content {
    padding-top: 68px;
    padding-bottom: 54px;
  }

  .about-breadcrumb {
    margin-bottom: 22px;
  }

  .about-hero h1 {
    font-size: 40px;
    line-height: 1.1;
  }

  .about-hero p {
    font-size: 16px;
  }

  .about-profile,
  .about-role,
  .about-network,
  .about-strengths {
    padding: 72px 0;
  }

  .about-profile__layout {
    gap: 46px;
  }

  .about-profile__visual {
    min-height: 430px;
    padding-right: 34px;
    padding-bottom: 44px;
  }

  .about-profile__visual-main {
    min-height: 386px;
  }

  .about-profile__visual-secondary {
    width: 46%;
    border-width: 5px;
  }

  .about-profile__content h2,
  .about-role__header h2,
  .about-network__header h2,
  .about-strengths__header h2 {
    font-size: 30px;
  }

  .about-profile__lead {
    font-size: 16px;
  }

  .about-profile__points {
    grid-template-columns: 1fr;
  }

  .about-stat {
    min-height: 144px;
    padding: 28px 20px;
  }

  .about-stat__value {
    font-size: 34px;
  }

  .about-role__header {
    gap: 24px;
  }

  .about-role__grid {
    margin-top: 42px;
  }

  .about-network__layout {
    gap: 46px;
  }

  .about-network__locations {
    grid-template-columns: 1fr;
  }

  .about-location,
  .about-location:nth-child(even) {
    min-height: 0;
    padding: 26px 0;
    border-left: 0;
  }

  .about-strengths__grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .about-strength,
  .about-strength + .about-strength,
  .about-strength:nth-child(3),
  .about-strength:nth-child(4) {
    padding: 28px 0;
    border-left: 0;
    border-top: 1px solid var(--color-border);
  }

  .about-strength:first-child {
    border-top: 0;
  }

  .about-cta__inner {
    min-height: 420px;
    gap: 30px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .about-cta__copy h2 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .about-hero {
    padding-top: 72px;
  }

  .about-hero h1 {
    font-size: 36px;
  }

  .about-profile__visual {
    min-height: 360px;
  }

  .about-profile__visual-main {
    min-height: 316px;
  }

  .about-stat {
    padding-right: 16px;
    padding-left: 16px;
  }

  .about-stat__value {
    font-size: 30px;
  }

  .about-stat__label {
    font-size: 13px;
  }
}
