
/* ── ABOUT HERO ── */
.about-hero {
  position: relative;
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 3rem 5rem;
  overflow: hidden;
}

.about-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 4rem;
  align-items: start;
}

/* ── PHOTO ── */
.about-photo-col {
  position: sticky;
  top: 8rem;
}

.about-photo {
  width: 70%;
  display: block;
  filter: grayscale(0%);
  border: 1px solid var(--border);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

/* ── COPY ── */
.about-copy-col {
  padding-top: 0.5rem;
}

.about-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.about-title em {
  font-style: italic;
  font-weight: 400;
}

.about-bio {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.85;
  color: var(--text);
  max-width: 50ch;
  margin-bottom: 1.3rem;
}

/* ── EDUCATION ── */
.about-education {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.about-edu-heading {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.about-edu-heading em {
  font-style: italic;
  font-weight: 400;
}

.about-edu-school {
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.about-edu-degree {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── DECORATIVE FLOWER ── */
.about-flower {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  z-index: 0;
  opacity: 0.3;
  pointer-events: none;
}

.af-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100px;
  height: 100px;
  margin-left: -50px;
  margin-top: -50px;
  border-radius: 50%;
  background: radial-gradient(circle at 42% 40%, #fdeef2, var(--pink) 52%, #efb3c4 92%);
  z-index: 5;
}

.af-petal {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 140px;
  height: 250px;
  margin-left: -70px;
  margin-top: -250px;
  transform-origin: 50% 100%;
  transform: rotate(var(--a));
  opacity: 0;
}

.af-petal-shape {
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 84%, var(--petal), #c5bfb5 80%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  box-shadow: inset 6px -8px 18px rgba(0,0,0,0.06);
}

@keyframes petalPop {
  0%   { opacity: 0; transform: rotate(var(--a)) scale(0.2); }
  70%  { opacity: 1; }
  100% { opacity: 1; transform: rotate(var(--a)) scale(1); }
}

.about-flower.run .af-petal {
  animation: petalPop 0.55s cubic-bezier(.34,1.56,.64,1) both;
  animation-delay: var(--d, 0s);
}

@media (prefers-reduced-motion: reduce) {
  .about-flower .af-petal {
    animation: none !important;
    opacity: 1 !important;
  }
}

/* ── LATELY ── */
.about-lately {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
}

.lately-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 3rem;
}

.lately-heading {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 2.5rem;
}

.lately-heading em {
  font-style: italic;
  font-weight: 400;
}

.lately-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.lately-label {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.lately-value {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 0.3rem;
}

.lately-note {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── FOOTER ── */
footer {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .about-hero { padding: 6rem 1.5rem 4rem; }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-photo-col {
    position: static;
    display: flex;
    justify-content: center;
  }

  .about-photo { width: 80%; }

  .about-flower { width: 540px; height: 540px; }

  .lately-inner { padding: 3rem 1.5rem; }
  .lately-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

  footer { flex-direction: column; gap: 0.5rem; text-align: center; }
}
