/* ================================================================
   ABOUT — Cream background, left-aligned text
   ================================================================ */
#about {
  background: var(--cream);
  padding: 48px 0 0;
}

.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* "ABOUT" section heading */
.about-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 42px;
  color: #2F2F3B;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: normal;
  text-transform: none;
}

/* Body text — left-aligned, dark olive */
.about-text {
  max-width: 100%;
  margin-bottom: 32px;
}

.about-text p {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.65;
  color: var(--heading-dark);
  margin-bottom: 20px;
}
.about-text p:last-child { margin-bottom: 0; }

/* Photos — side by side, seamless continuation */
.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  align-items: stretch;
}

.about-photo-wrap {
  overflow: hidden;
}

.about-photo-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .about-inner { padding: 0 20px; }
  .about-text { margin-bottom: 40px; }
  .about-photo-wrap img { height: 280px; }
}

@media (max-width: 640px) {
  .about-photos { grid-template-columns: 1fr; }
  .about-photo-wrap img { height: 280px; }
}
