/* ============================================================
   About Mia — her story, told like a magazine profile,
   plus the "ask me anything" request section.
   ============================================================ */

/* ---------- fixed blurred background ---------- */

.atmosphere {
  background: none;               /* drop the default gradient */
}

.atmosphere::after { display: none; } /* no grain on this page */

.atmosphere::before {
  content: "";
  position: fixed;
  inset: -24px;                    /* overshoot hides blur-edge fringing */
  z-index: -2;
  background: url("../assets/about-bg.jpg") center / cover no-repeat;
  filter: blur(17px);
}

/* dark wine / rose tint sits above the blurred photo */
.about-tint {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(70% 50% at 80% 12%, rgba(221, 139, 168, 0.13), transparent 70%),
    radial-gradient(60% 50% at 10% 88%, rgba(185, 92, 127, 0.11), transparent 70%),
    rgba(21, 6, 16, 0.57);
  pointer-events: none;
}

.about-hero {
  padding: 10rem var(--gutter) 0;
  max-width: 90rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: end;
}

.about-hero .display {
  font-size: clamp(2.8rem, 2rem + 5.5vw, 7rem);
  color: var(--cream);
}

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

.about-portrait {
  aspect-ratio: 3 / 4;
  transform: rotate(2deg);
  box-shadow: 0 60px 120px -40px rgba(0, 0, 0, 0.8);
}

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

/* ---------- story chapters ---------- */

.chapters {
  display: flex;
  flex-direction: column;
  gap: clamp(4rem, 8vw, 7rem);
}

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

.chapter-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(4rem, 8vw, 7rem);
  color: rgba(221, 139, 168, 0.22);
  line-height: 1;
}

.chapter-body h3 {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: 500;
  color: var(--cream);
}

.chapter-body h3 em { color: var(--rose); }

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

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

.chapter:nth-child(odd) .chapter-num { grid-column: 1 / span 2; }
.chapter:nth-child(odd) .chapter-body { grid-column: 3 / span 5; }
.chapter:nth-child(odd) .chapter-figure { grid-column: 9 / span 4; transform: rotate(-2deg); }

.chapter:nth-child(even) .chapter-figure { grid-column: 1 / span 4; grid-row: 1; transform: rotate(2deg); }
.chapter:nth-child(even) .chapter-num { grid-column: 6 / span 2; }
.chapter:nth-child(even) .chapter-body { grid-column: 8 / span 5; }

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

/* ---------- little truths ---------- */

.truths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(221, 139, 168, 0.15);
  border: 1px solid rgba(221, 139, 168, 0.15);
}

.truth {
  background: var(--ink);
  padding: 2.2rem 1.8rem;
}

.truth strong {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--rose-glow);
  display: block;
}

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

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

/* ---------- whisper form ---------- */

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

.whisper-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding: 2.6rem;
  border: 1px solid rgba(221, 139, 168, 0.2);
  border-radius: 6px;
  background: linear-gradient(170deg, rgba(47, 15, 34, 0.7), rgba(21, 6, 16, 0.85));
}

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

.field label {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.field input,
.field select,
.field textarea {
  font: inherit;
  color: var(--cream);
  background: rgba(21, 6, 16, 0.6);
  border: 1px solid rgba(221, 139, 168, 0.22);
  border-radius: 4px;
  padding: 0.9rem 1.1rem;
  transition: border-color var(--dur-mid) ease, box-shadow var(--dur-mid) ease;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(221, 139, 168, 0.15);
}

.field ::placeholder { color: rgba(179, 145, 161, 0.5); }

.whisper-note {
  font-size: 0.78rem;
  color: rgba(179, 145, 161, 0.7);
}

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