/* ── About Page ── */

/* Intro quote */
.about-intro {
  padding: 4rem 4.2%;
  text-align: center;
}

.about-intro__text {
  max-width: 1100px;
  margin: 0 auto;
  font-size: clamp(1.6rem, 2.8vw, 2.7rem);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: #155573;
}

/* Content: two-column text + video */
.about-content {
  padding: 0 4.2% 5rem;
}

.about-content__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 4rem;
}

.about-content__text {
  flex: 1;
  font-size: clamp(1rem, 1.3vw, 1.3rem);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.01em;
  color: #1d1d1d;
}

.about-content__text p + p {
  margin-top: 1.5em;
}

.about-content__media {
  flex-shrink: 0;
  width: 530px;
}

.about-content__video-wrap {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 530 / 328;
  cursor: pointer;
}

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

.about-content__video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.about-content__video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 133px;
  height: 133px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1;
  transition: transform 0.2s;
}

.about-content__video-play:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.about-content__video-play img {
  width: 100%;
  height: 100%;
}

/* Why AMS — values section */
.about-why {
  position: relative;
  display: flex;
  min-height: 700px;
  overflow: hidden;
}

.about-why__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.about-why__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(21, 85, 115, 0.92);
}

.about-why__image {
  position: relative;
  z-index: 1;
  flex: 0 0 48%;
  overflow: hidden;
}

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

.about-why__content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding: 5rem 4.2% 5rem 4rem;
}

.about-why__heading {
  font-size: clamp(1.75rem, 2.4vw, 2.53rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 0.6em;
}

.about-why__value {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 1em;
}

.about-why__value-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-why__value-icon {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
}

.about-why__value-title {
  font-size: clamp(1.05rem, 1.24vw, 1.3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.49;
  letter-spacing: -0.01em;
}

.about-why__value-desc {
  font-size: clamp(0.95rem, 1.12vw, 1.177rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.64;
  letter-spacing: -0.01em;
}
