/* ============================================================
   The Girl — Violet's story as three incidents on the record,
   plus known facts and a "dare me" line straight to her inbox.
   ============================================================ */

.about-hero {
  position: relative;
  z-index: 1;
  padding: 8.5rem var(--gutter) 4rem;
  max-width: 90rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.about-hero-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: blur(4px) saturate(1.1);
}

.about-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10, 5, 18, 0.8) 0%,
      rgba(10, 5, 18, 0.4) 30%,
      rgba(10, 5, 18, 0.7) 70%,
      rgba(10, 5, 18, 1) 100%),
    radial-gradient(circle at 60% 40%, rgba(157, 92, 255, 0.25), transparent 75%);
}

.about-hero .display {
  font-size: clamp(2.4rem, 1.8rem + 5vw, 6.2rem);
  color: var(--chrome);
  text-transform: uppercase;
}

.about-hero .lede { margin-top: 1.6rem; }

.about-shot {
  aspect-ratio: 3 / 4;
  transform: rotate(-2.2deg);
  box-shadow: 0 50px 110px -40px rgba(0, 0, 0, 0.9), 0 0 70px -30px rgba(157, 92, 255, 0.45);
}

@media (max-width: 900px) {
  .about-hero { grid-template-columns: 1fr; }
  .about-shot { max-width: 19rem; }
}

/* ---------- incidents ---------- */

.incidents {
  display: flex;
  flex-direction: column;
  gap: clamp(3.5rem, 7vw, 6rem);
}

.incident {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: center;
}

.incident-stamp {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--acid);
  border: 1px solid rgba(125, 249, 228, 0.4);
  border-radius: 3px;
  padding: 0.4rem 0.8rem;
  display: inline-block;
  transform: rotate(-2deg);
}

.incident-body h3 {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-h3);
  text-transform: uppercase;
  color: var(--chrome);
}

.incident-body h3 em {
  font-style: normal;
  color: var(--violet-hot);
  text-shadow: 0 0 20px rgba(157, 92, 255, 0.5);
}

.incident-body p {
  margin-top: 0.9rem;
  color: var(--text-dim);
  max-width: 30rem;
}

.incident-figure { aspect-ratio: 4 / 5; }

.incident:nth-child(odd) .incident-body { grid-column: 1 / span 6; }
.incident:nth-child(odd) .incident-figure { grid-column: 8 / span 5; transform: rotate(1.8deg); }

.incident:nth-child(even) .incident-figure { grid-column: 1 / span 5; grid-row: 1; transform: rotate(-1.8deg); }
.incident:nth-child(even) .incident-body { grid-column: 7 / span 6; }

@media (max-width: 860px) {
  .incident { display: flex; flex-direction: column; align-items: flex-start; gap: 1.3rem; }
  .incident-figure { width: 100%; max-width: 18rem; }
}

/* ---------- known facts ---------- */

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(157, 92, 255, 0.22);
  border: 1px solid rgba(157, 92, 255, 0.22);
}

.fact {
  background: var(--void);
  padding: 2rem 1.7rem;
}

.fact strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  text-transform: uppercase;
  color: var(--uv);
  display: block;
}

.fact p { margin-top: 0.6rem; color: var(--text-dim); font-size: 0.88rem; }

@media (max-width: 800px) { .facts { grid-template-columns: 1fr; } }

/* ---------- dare me ---------- */

.dare {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.dare-form {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  padding: 2.4rem;
  border: 1px solid rgba(157, 92, 255, 0.3);
  border-radius: 5px;
  background: linear-gradient(165deg, rgba(29, 16, 51, 0.8), rgba(10, 5, 18, 0.9));
}

.field { display: flex; flex-direction: column; gap: 0.45rem; }

.field label {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.field input,
.field select,
.field textarea {
  font: inherit;
  font-family: var(--font-body);
  color: var(--chrome);
  background: rgba(10, 5, 18, 0.7);
  border: 1px solid rgba(157, 92, 255, 0.3);
  border-radius: 3px;
  padding: 0.85rem 1rem;
  transition: border-color var(--dur-mid) ease, box-shadow var(--dur-mid) ease;
}

.field textarea { min-height: 7rem; resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--violet-hot);
  box-shadow: 0 0 0 3px rgba(157, 92, 255, 0.2);
}

.field ::placeholder { color: rgba(141, 127, 168, 0.55); }

.dare-note {
  font-size: 0.76rem;
  color: rgba(141, 127, 168, 0.8);
}

@media (max-width: 900px) { .dare { grid-template-columns: 1fr; } }

/* ============================================================
   FIXED MIDDLE BACKGROUND
   ============================================================ */

.about-fixed-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.about-fixed-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.15;
  filter: saturate(0.6) blur(1px);
}

.about-fixed-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(157, 92, 255, 0.10), rgba(10, 5, 18, 0.6) 90%);
}
