.about-hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: var(--navy-950);
}

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

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

.about-hero__overlay {
  background:
    linear-gradient(90deg, rgba(7, 28, 47, 0.97) 0%, rgba(7, 28, 47, 0.82) 48%, rgba(7, 28, 47, 0.45) 100%),
    linear-gradient(0deg, rgba(7, 28, 47, 0.72), transparent 65%);
}

.about-hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding-block: 90px 82px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0 0 36px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  list-style: none;
}

.breadcrumbs li + li::before {
  content: "/";
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumbs a {
  color: #fff;
  text-decoration: none;
}

.about-hero h1 {
  max-width: 820px;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.about-hero__content > p:last-child {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 1.6vw, 1.25rem);
}

.section {
  padding-block: clamp(76px, 9vw, 124px);
}

.section--tinted {
  background: var(--surface-soft);
}

.section--dark {
  color: rgba(255, 255, 255, 0.8);
  background: var(--navy-950);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 48px;
}

.section-heading h2 {
  margin-bottom: 18px;
}

.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading--centered {
  margin-inline: auto;
  text-align: center;
}

.story__layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(60px, 9vw, 116px);
  align-items: center;
}

.story__media {
  position: relative;
}



.story__media > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.experience-badge {
  position: absolute;
  right: -34px;
  bottom: 36px;
  width: 170px;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: #fff;
  background: var(--orange-600);
  border: 8px solid #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.experience-badge strong {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 2.7rem;
  line-height: 1;
}

.experience-badge span {
  margin-top: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.story__content h2 {
  margin-bottom: 26px;
}

.story__content > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

.problem__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(50px, 9vw, 120px);
}

.problem__heading h2 {
  margin-bottom: 0;
}

.problem__content > p {
  color: var(--muted);
  font-size: 1.04rem;
}

.problem blockquote {
  padding: 26px 30px;
  margin: 32px 0 0;
  color: var(--navy-900);
  background: #fff;
  border-left: 5px solid var(--orange-600);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-sm);
}

.problem blockquote p {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.5;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0;
  margin: 0;
  counter-reset: process;
  list-style: none;
}

.process-card {
  position: relative;
  min-height: 290px;
  padding: 32px 27px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.process-card:not(:last-child)::after {
  content: "\2192";
  position: absolute;
  top: 50%;
  right: -17px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--orange-600);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  transform: translateY(-50%);
}

.process-card__number {
  display: block;
  margin-bottom: 44px;
  color: var(--orange-600);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.process-card h3 {
  margin-bottom: 13px;
  font-size: 1.15rem;
}

.process-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.stock-note {
  max-width: 900px;
  padding: 18px 22px;
  margin: 34px auto 0;
  color: var(--navy-900);
  background: var(--blue-100);
  border-left: 4px solid var(--blue-600);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  text-align: center;
}

.tile-matching__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
  gap: clamp(60px, 9vw, 110px);
  align-items: center;
}

.tile-matching h2 {
  margin-bottom: 22px;
  color: #fff;
}

.tile-matching__content > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.03rem;
}

.tile-matching__content .button {
  margin-top: 14px;
}

.tile-matching__media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 10px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
}

.customer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.customer-card {
  padding: 34px 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.customer-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.customer-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  color: var(--orange-600);
  background: var(--orange-100);
  border-radius: 50%;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
}

.customer-card h3 {
  margin-bottom: 13px;
}

.customer-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.about-cta {
  color: #fff;
  background:
    linear-gradient(100deg, rgba(11, 41, 66, 0.98), rgba(18, 59, 93, 0.9)),
    url("images/gutter.jpg") center / cover;
}

.about-cta__inner {
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding-block: 70px;
}

.about-cta h2 {
  max-width: 700px;
  margin-bottom: 14px;
  color: #fff;
}

.about-cta p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
}

.about-cta__actions {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 1050px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-card:not(:last-child)::after {
    display: none;
  }

  .process-card {
    min-height: 250px;
  }
}

@media (max-width: 860px) {
  .about-hero {
    min-height: 500px;
  }

  .about-hero__overlay {
    background: rgba(7, 28, 47, 0.84);
  }

  .story__layout,
  .problem__layout,
  .tile-matching__layout {
    grid-template-columns: 1fr;
  }

  .story__media {
    max-width: 620px;
  }

  .story__media > img {
    aspect-ratio: 16 / 10;
  }

  .experience-badge {
    right: -20px;
  }

  .tile-matching__media {
    max-width: 470px;
  }

  .customer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .customer-card:last-child {
    grid-column: 1 / -1;
  }

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

  .about-cta__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 650px) {
  .section {
    padding-block: 72px;
  }

  .about-hero__content {
    padding-block: 70px 64px;
  }

  .breadcrumbs ol {
    margin-bottom: 28px;
  }

  .experience-badge {
    right: -5px;
    bottom: -24px;
    width: 140px;
    min-height: 140px;
    border-width: 6px;
  }

  .experience-badge strong {
    font-size: 2.15rem;
  }

  .process-grid,
  .customer-grid {
    grid-template-columns: 1fr;
  }

  .customer-card:last-child {
    grid-column: auto;
  }

  .process-card {
    min-height: auto;
  }

  .process-card__number {
    margin-bottom: 28px;
  }

  .stock-note {
    text-align: left;
  }

  .tile-matching__media img {
    max-width: 360px;
  }

  .about-cta__actions {
    width: 100%;
    display: grid;
  }
}

@media (max-width: 430px) {
  .about-hero {
    min-height: 460px;
  }

  .story__media::before {
    top: -10px;
    right: 10px;
    bottom: 10px;
    left: -10px;
  }

  .experience-badge {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    min-height: auto;
    flex-direction: row;
    gap: 12px;
    padding: 18px;
    margin-top: 15px;
    border: 0;
    border-radius: var(--radius-md);
  }

  .experience-badge span {
    max-width: 130px;
    margin-top: 0;
    text-align: left;
  }

  .problem blockquote {
    padding: 22px;
  }
}
