/* ABOUT PAGE */

/* ABOUT HERO */
.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(500px, 0.95fr);
  min-height: 720px;
  background-color: var(--primary-color);
}

.about-hero-image {
  min-height: 720px;
  overflow: hidden;
}

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

.about-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8rem);
}

.about-hero .section-eyebrow {
  color: var(--secondary-color);
}

.about-hero h1 {
  max-width: 700px;
  color: var(--contrast);
  font-size: clamp(4rem, 6vw, 6.5rem);
  line-height: 0.95;
  text-wrap: balance;
}

.about-hero-content > p:last-child {
  max-width: 640px;
  margin-top: 1.75rem;
  color: rgb(255 255 255 / 80%);
  font-size: 1.15rem;
  line-height: 1.75;
}

/* OUR STORY */
.about-story {
  padding: clamp(6rem, 10vw, 9rem) 1.5rem;
  background-color: var(--bg-color);
}

.about-story-inner {
  display: grid;
  grid-template-columns: minmax(450px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(4rem, 8vw, 8rem);
  width: min(100%, 1400px);
  margin-inline: auto;
}

.about-story-content {
  max-width: 650px;
}

.about-story-content h2 {
  margin-bottom: 2rem;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1;
  text-wrap: balance;
}

.about-story-content > p:not(.section-eyebrow) {
  margin-bottom: 1.25rem;
  color: var(--body-text);
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-story-content > p:last-child {
  margin-bottom: 0;
}

.about-story-image {
  height: 650px;
  overflow: hidden;
  background-color: var(--secondary-color);
}

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

/* COMPANY VALUES */
.company-values {
  padding: clamp(6rem, 10vw, 9rem) 1.5rem;
  background-color: var(--secondary-color);
}

.company-values-inner {
  width: min(100%, 1400px);
  margin-inline: auto;
}

.company-values-header {
  max-width: 780px;
  margin-bottom: 4rem;
}

.company-values-header h2 {
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgb(38 58 46 / 25%);
  border-left: 1px solid rgb(38 58 46 / 25%);
}

.value-item {
  min-height: 300px;
  padding: 3rem;
  border-right: 1px solid rgb(38 58 46 / 25%);
  border-bottom: 1px solid rgb(38 58 46 / 25%);
}

.value-number {
  display: block;
  margin-bottom: 2.5rem;
  color: var(--accent-color);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.value-item h3 {
  margin-bottom: 0.85rem;
  font-size: 2rem;
}

.value-item p {
  max-width: 52ch;
  color: var(--body-text);
  line-height: 1.75;
}
