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

.about-hero h1 {
  max-width: 1020px;
}

.about-hero .lead {
  max-width: 850px;
}



.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: center;
  gap: clamp(38px, 6vw, 72px);
}

.about-visual {
  position: relative;
}

.about-image {
  overflow: hidden;
  min-height: 610px;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

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

.about-year {
  position: absolute;
  right: -18px;
  bottom: 34px;
  display: grid;
  min-width: 132px;
  padding: 18px 22px;
  background: var(--olive-dark);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-small);
  color: var(--on-strong);
}

.about-year span {
  color: var(--on-strong-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-year strong {
  margin-top: 2px;
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1;
}



.about-copy h2 {
  max-width: 620px;
  margin-bottom: 26px;
}

.about-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: 1.03rem;
}

.about-copy > p:last-of-type {
  margin-bottom: 0;
}

.about-facts {
  display: grid;
  grid-template-columns: 0.72fr 1.3fr 1fr;
  gap: 12px;
  margin-top: 34px;
}

.about-fact {
  min-width: 0;
  padding: 17px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  box-shadow: var(--shadow-small);
}

.about-fact span,
.about-fact strong {
  display: block;
}

.about-fact span {
  margin-bottom: 5px;
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-fact strong {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.3;
}



@media (max-width: 980px) {
  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-visual {
    max-width: 720px;
  }

  .about-image,
  .about-image img {
    min-height: 500px;
  }

  .about-copy {
    max-width: 780px;
  }
}



@media (max-width: 640px) {
  .about-hero {
    padding-bottom: 42px;
  }

  .about-image,
  .about-image img {
    min-height: 390px;
  }

  .about-year {
    right: 14px;
    bottom: 14px;
    min-width: 108px;
    padding: 14px 17px;
  }

  .about-year strong {
    font-size: 1.65rem;
  }

  .about-facts {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }
}
