/* ── HERO ── */
  .bio-hero {
    padding: 10rem 5% 5rem;
    background: var(--espresso);
    color: var(--sand);
    text-align: center;
    position: relative; overflow: hidden;
  }
  .bio-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 60%, rgba(199,166,158,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .bio-hero-eyebrow {
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--rose);
    margin-bottom: 1.2rem;
    opacity: 0; animation: fadeUp 0.7s 0.1s ease forwards;
  }
  .bio-hero h1 {
    font-family: 'Lora', serif;
    font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700;
    line-height: 1.15; margin-bottom: 1.5rem;
    opacity: 0; animation: fadeUp 0.7s 0.25s ease forwards;
  }
  .bio-hero h1 em { font-style: italic; color: var(--rose); }
  .bio-hero-sub {
    font-size: 1.1rem; color: rgba(242,239,234,0.65);
    line-height: 1.8; max-width: 560px; margin: 0 auto;
    opacity: 0; animation: fadeUp 0.7s 0.4s ease forwards;
  }

  /* ── PHOTO + INTRO ── */
  .bio-intro {
    padding: 6rem 5%;
    display: grid; grid-template-columns: 340px 1fr;
    gap: 5rem; align-items: start;
    max-width: 1100px; margin: 0 auto;
  }
  .bio-photo-col { position: sticky; top: 7rem; }
  .bio-photo-frame {
    width: 100%; aspect-ratio: 1;
    border-radius: 2rem;
    background: linear-gradient(135deg, var(--sage-light), var(--rose-light));
    display: flex; align-items: center; justify-content: center;
    font-size: 5rem;
    box-shadow: 0 20px 60px rgba(62,54,48,0.15);
    overflow: hidden; margin-bottom: 1.5rem;
  }
  .bio-photo-frame img {
    width: 100%; height: 100%; object-fit: cover;
  }
  .bio-photo-caption {
    text-align: center;
  }
  .bio-photo-caption strong {
    font-family: 'Lora', serif; font-size: 1.2rem; font-weight: 700;
    color: var(--espresso); display: block; margin-bottom: 0.3rem;
  }
  .bio-photo-caption span {
    font-size: 0.83rem; color: var(--muted); line-height: 1.6;
    display: block;
  }
  .bio-creds {
    margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem;
  }
  .bio-cred {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.82rem; color: var(--muted);
    background: white; border-radius: 0.75rem; padding: 0.65rem 1rem;
    border: 1px solid var(--sand-dark);
  }
  .bio-cred span:first-child { font-size: 1rem; }

  /* ── STORY ── */
    .bio-story-section {
    margin-bottom: 3rem;
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .bio-story-section.visible { opacity: 1; transform: translateY(0); }

  .story-label {
    display: inline-block; font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose);
    margin-bottom: 0.8rem;
  }
  .bio-story p {
    font-size: 1rem; line-height: 1.9; color: var(--espresso);
    margin-bottom: 1.1rem;
  }
  .bio-story p:last-child { margin-bottom: 0; }
  .bio-story em { font-style: italic; color: var(--sage); }
  .bio-story strong { font-weight: 700; color: var(--espresso); }

  /* Pull quote */
  .bio-pullquote {
    border-left: 3px solid var(--rose);
    padding: 1.2rem 1.8rem;
    margin: 2rem 0;
    background: var(--rose-light);
    border-radius: 0 1rem 1rem 0;
  }
  .bio-pullquote p {
    font-family: 'Lora', serif !important;
    font-size: 1.15rem !important; font-style: italic;
    color: var(--espresso) !important; line-height: 1.7 !important;
    margin: 0 !important;
  }

  /* Divider */
  .bio-divider {
    display: flex; align-items: center; gap: 1rem;
    margin: 2.5rem 0;
    color: var(--sand-dark);
    font-size: 1rem; letter-spacing: 0.3em;
  }
  .bio-divider::before, .bio-divider::after {
    content: ''; flex: 1; height: 1px; background: var(--sand-dark);
  }

  /* Stats strip */
  .bio-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
    margin: 2.5rem 0;
  }
  .bio-stat {
    background: var(--espresso); border-radius: 1.2rem;
    padding: 1.5rem; text-align: center; color: var(--sand);
  }
  .bio-stat-num {
    font-family: 'Lora', serif; font-size: 2rem; font-weight: 700;
    color: var(--rose); display: block; line-height: 1;
    margin-bottom: 0.4rem;
  }
  .bio-stat-label { font-size: 0.8rem; color: rgba(242,239,234,0.6); line-height: 1.4; }

  /* Heart note */
  .bio-heart-note {
    background: white; border-radius: 1.5rem; padding: 1.8rem 2rem;
    border: 1px solid var(--sand-dark);
    display: flex; align-items: flex-start; gap: 1rem;
    margin: 2rem 0;
  }
  .bio-heart-note .heart-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 0.2rem; }
  .bio-heart-note p {
    font-size: 0.95rem !important; line-height: 1.8 !important;
    color: var(--muted) !important; margin: 0 !important;
  }
  .bio-heart-note p em { font-style: italic; color: var(--rose) !important; }

  /* CTA */
  .bio-cta {
    padding: 5rem 5%;
    background: var(--espresso); color: var(--sand);
    text-align: center;
  }
  .bio-cta h2 {
    font-family: 'Lora', serif; font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700; margin-bottom: 1rem; line-height: 1.2;
  }
  .bio-cta h2 em { font-style: italic; color: var(--rose); }
  .bio-cta p { color: rgba(242,239,234,0.65); max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.8; }
  .btn-rose { background: var(--rose); color: white; padding: 1rem 2.4rem; border-radius: 2rem; text-decoration: none; font-weight: 700; font-size: 0.95rem; transition: background 0.2s, transform 0.2s; display: inline-block; box-shadow: 0 4px 20px rgba(199,166,158,0.35); }
  .btn-rose:hover { background: #b5918a; transform: translateY(-2px); }

  @media (max-width: 860px) {
    .gif-grid { grid-template-columns: 1fr !important; }
    .bio-intro { grid-template-columns: 1fr; gap: 2.5rem; }
    .bio-photo-col { position: static; }
    .bio-photo-frame { width: 220px; margin: 0 auto 1.5rem; }
    .bio-stats { grid-template-columns: 1fr; }
  }

footer { border-top: 1px solid rgba(255,255,255,0.06); }
