/* ── CONTENT ── */
.page-content {
  padding: 120px 60px 80px;
  max-width: 1100px;
  margin: 0 auto;
}

h1 {
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.38em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 80px 0;
  position: relative;
  padding-bottom: 14px;
}

h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
}

/* ── SECTIONS ── */
.image-section {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
}

.image-section--reversed {
  flex-direction: row-reverse;
}

.section-image--large {
  flex: 0 0 55%;
  width: 55%;
}

.section-image-frame.section-image--large {
  aspect-ratio: unset;
  overflow: visible;
  transform: none;
  margin-top: 80px;
  box-shadow: none;
}

.section-image-frame.section-image--full {
  flex: 0 0 62%;
  width: 62%;
  aspect-ratio: unset;
  overflow: visible;
  margin-right: -60px;
  transform: none;
  align-self: flex-start;
}

.section-image-frame.section-image--full img {
  width: 100%;
  height: auto;
  object-fit: unset;
}

.section-image-frame.section-image-jobs {
  aspect-ratio: 4 / 5;
}

.section-image-frame.section-image-jobs img {
  object-position: center center;
}

.section-image-frame.section-image--large img {
  height: auto;
  object-fit: unset;
}

.section-image {
  flex: 0 0 38%;
  width: 38%;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  filter: brightness(0.88);
  box-shadow: 0 0 60px 40px var(--bg-brown);
}

.section-image-frame {
  flex: 0 0 28%;
  width: 28%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 0 60px 40px var(--bg-brown);
  align-self: flex-start;
}

.section-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: brightness(0.88);
}

.section-text {
  flex: 1;
}

.section-text h2 {
  font-family: var(--font-body);
  font-size: 34px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.04em;
  margin: 0 0 20px 0;
  position: relative;
  padding-bottom: 14px;
}

.section-text h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
}

.section-text p {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.62);
  margin: 0 0 14px 0;
}

.section-text p:last-child {
  margin-bottom: 0;
}

.section-text em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.82);
}

.section-text--centered {
  text-align: center;
}

.section-text--centered h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-text a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── RESPONSIVE: TABLET (≤1024px) ── */
@media (max-width: 1024px) {
  .page-content {
    padding: 100px 40px 60px;
  }

  .image-section {
    gap: 40px;
  }

  .section-text h2 {
    font-size: 28px;
  }

  .section-text p {
    font-size: 17px;
  }
}

/* ── RESPONSIVE: MOBILE (≤768px) ── */
@media (max-width: 768px) {
  .page-content {
    padding: 100px 20px 48px;
  }

  .image-section,
  .image-section--reversed {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 60px;
  }

  .section-image {
    flex: none;
    width: 100%;
  }

  .section-image-frame {
    flex: none;
    width: 100%;
  }

  .section-image-frame.section-image--large {
    margin-top: 0;
  }

  .image-section--tight {
    margin-bottom: 28px;
  }

  .section-text h2 {
    font-size: 26px;
  }

  .image-section--reversed .section-text h2::after {
    left: 0;
    right: auto;
  }

  .section-text p {
    font-size: 17px;
  }
}

/* ── RESPONSIVE: SMALL MOBILE (≤480px) ── */
@media (max-width: 480px) {
  .page-content {
    padding: 90px 16px 40px;
  }

  h1 {
    font-size: 22px;
    letter-spacing: 0.22em;
  }

  .section-text h2 {
    font-size: 23px;
  }

  .section-text p {
    font-size: 16px;
  }
}
