/* ─────────────────────────────────────────
   css/about.css
───────────────────────────────────────── */

.about {
  position: relative;
  background: var(--charcoal);
  padding: var(--section-py) var(--section-px);
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(42,34,32,0.92) 0%, rgba(42,34,32,0.8) 46%, rgba(42,34,32,0.62) 100%),
    url("../assets/images/about-background.jpg") center 38% / cover no-repeat;
  opacity: 0.42;
  pointer-events: none;
}

.about::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 76% 42%, rgba(201,123,138,0.22), transparent 34%);
  pointer-events: none;
}

.about__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.about__heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 58px);
  font-weight: 300;
  color: var(--petal);
  line-height: 1.08;
  margin-bottom: 32px;
}

.about__heading em {
  font-style: italic;
  color: var(--blush);
}

.about__body {
  font-size: 15px;
  line-height: 1.95;
  color: rgba(247,229,223,0.82);
  max-width: 640px;
  margin-bottom: 48px;
  font-weight: 300;
}

.about__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  padding: 9px 20px;
  border: 0.5px solid rgba(242,196,184,0.28);
  background: rgba(42,34,32,0.28);
  backdrop-filter: blur(8px);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242,196,184,0.8);
  transition: border-color var(--transition-fast), color var(--transition-fast);
  cursor: default;
}

.chip:hover {
  border-color: rgba(242,196,184,0.6);
  color: rgba(242,196,184,0.95);
}

@media (max-width: 900px) {
  .about::before {
    background:
      linear-gradient(180deg, rgba(42,34,32,0.88) 0%, rgba(42,34,32,0.78) 100%),
      url("../assets/images/about-background.jpg") center top / cover no-repeat;
    opacity: 0.36;
  }
}
