  :root {
    --crimson: #7B1818;
    --crimson-deep: #5A0F0F;
    --cream: #F5F0E8;
    --cream-dark: #EDE6D6;
    --gold: #C49A28;
    --gold-light: #D4AF4A;
    /*--ink: #1A1410;*/
    /*--muted: #8A7F72;*/
    /*--soft: #B5A898;*/
  }

/* ─── HERO ────────────────────────────────── */
  .hero {
    padding-top: 100px;
    background: var(--crimson-deep);
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(196,154,40,0.08) 0%, transparent 65%);
  }
  .hero-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px 0;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 48px;
    align-items: end;
  }

  /* Avatar */
  .avatar-wrap {
    position: relative;
    align-self: end;
    padding-bottom: 0;
  }
  .avatar {
    width: 180px; height: 180px;
    border-radius: 2px;
    background: var(--crimson);
    border: 3px solid rgba(196,154,40,0.4);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    position: relative;
  }
  .avatar-initials {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 300;
    color: rgba(245,240,232,0.7);
    letter-spacing: -0.02em;
  }
  .avatar-badge {
    position: absolute;
    bottom: -12px; right: -12px;
    width: 36px; height: 36px;
    background: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 3px solid var(--cream);
  }
  .avatar-badge svg { width: 16px; height: 16px; fill: #fff; }

  /* Hero text */
  .hero-text { padding-bottom: 32px; }
  .hero-tag {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 14px;
  }
  .hero-tag::before, .hero-tag::after {
    content: ''; flex: 0 0 24px; height: 1px; background: var(--gold-light); opacity: 0.5;
  }
  h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
  }
  .hero-role {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 18px;
    opacity: 0.85;
  }
  .hero-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 16px;
    color: rgba(245,240,232,0.55);
    line-height: 1.6;
    max-width: 380px;
    border-left: 2px solid rgba(196,154,40,0.3);
    padding-left: 16px;
  }

  /* Hero stats bar */
  .hero-stats {
    grid-column: 1 / -1;
    display: flex;
    border-top: 1px solid rgba(245,240,232,0.08);
    margin-top: 32px;
  }
  .stat {
    flex: 1;
    padding: 20px 0;
    text-align: center;
    border-right: 1px solid rgba(245,240,232,0.08);
  }
  .stat:last-child { border-right: none; }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: var(--gold-light);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
  }
  .stat-label {
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.4);
  }
  
  
   /* ─── BODY ────────────────────────────────── */
  main {
    max-width: 900px;
    margin: 0 auto;
    padding: 56px 40px 80px;
    align-items: start;
  }

  /* Section label */
  .section-label {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    display: flex; align-items: center; gap: 10px;
  }
  .section-label::after {
    content: ''; flex: 0 0 32px; height: 1px; background: var(--gold); opacity: 0.35;
  }

  h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 16px;
    color: var(--ink);
  }

  p {
    font-size: 14px;
    line-height: 1.85;
    color: #4A4038;
    margin-bottom: 16px;
  }

  /* Bio section */
  .bio { margin-bottom: 48px; }





 

  .info-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--cream-dark);
    font-size: 13px;
  }
  .info-row:last-child { border-bottom: none; }
  .info-key { color: var(--muted); font-size: 11px; letter-spacing: 0.08em; }
  .info-val { color: var(--ink); font-weight: 400; }

  @media (max-width: 680px) {
    .hero-inner { grid-template-columns: 1fr; gap: 24px; }
    .avatar { width: 100px; height: 100px; }
    .avatar-initials { font-size: 36px; }
    main { grid-template-columns: 1fr; gap: 36px; }
    nav { padding: 14px 20px; }
    .hero-inner, main { padding-left: 20px; padding-right: 20px; }
  }
  