/* ============================================================
   PAGE : À PROPOS
   ============================================================ */

* { scrollbar-width: none; -ms-overflow-style: none; }
*::-webkit-scrollbar { display: none; width: 0; height: 0; }

html, body { height: auto; min-height: 100%; }

.about-story {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding: 7rem 6vw 3rem;
  padding-top: calc(var(--nav-h, 120px) + 5vh);
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  width: 100%;
}

.about-lead {
  font-family: var(--font-main);
  font-size: clamp(2.03rem, 3.625vw, 2.9rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: var(--yellow);
  margin-top: 0;
  margin-bottom: 2.5rem;
}

.about-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.95;
  margin-bottom: 1.5rem;
  max-width: 580px;
}

.about-photo-wrap {
  height: calc(100vh - 14rem);
  max-height: 600px;
  background: var(--violet-mid);
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.about-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.9;
}

.about-photo-gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to right, #000 0%, transparent 18%, transparent 82%, #000 100%),
    linear-gradient(to bottom, #000 0%, transparent 15%, transparent 85%, #000 100%);
}

@media (max-width: 900px) {
  .about-story-inner {
    grid-template-columns: 1fr;
  }
  .about-story {
    padding: 5rem 1.5rem 2rem;
    padding-top: calc(var(--nav-h, 90px) + 5vh);
    align-items: flex-start;
    height: auto;
    min-height: 100vh;
  }
  .about-photo-wrap {
    height: 50vw;
    max-height: 260px;
  }
}


@media (max-width: 768px) {
  .about-lead { font-size: clamp(1.7rem, 3.625vw, 2.9rem); margin-bottom: 2rem; }
  .about-body { font-size: 0.95rem; line-height: 1.65; }
}
