966 lines
42 KiB
HTML
966 lines
42 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Kayla Newkirk — Counselor Educator & Clinical Mental Health Counselor</title>
|
|
<meta name="description" content="Professional portfolio of Kayla Newkirk, MS.Ed, MHC-LP — PhD candidate in Counselor Education and Supervision.">
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
|
|
<style>
|
|
/* ── Reset & Variables ── */
|
|
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
|
:root {
|
|
--bg: #fcf8f5;
|
|
--surface: #ffffff;
|
|
--pastel-lavender: #ede3f7;
|
|
--pastel-mint: #d8efe8;
|
|
--pastel-peach: #fce8dc;
|
|
--pastel-pink: #fde8ee;
|
|
--pastel-yellow: #fff8e1;
|
|
--accent-lavender: #b39ddb;
|
|
--accent-mint: #80cbc4;
|
|
--accent-rose: #d4817a;
|
|
--text-primary: #2d3436;
|
|
--text-secondary: #5b6366;
|
|
--text-muted: #b2bec3;
|
|
--border: #eae4e0;
|
|
--shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
|
|
--shadow-md: 0 8px 24px rgba(0,0,0,0.06);
|
|
--shadow-lg: 0 16px 48px rgba(0,0,0,0.08);
|
|
--radius: 20px;
|
|
--radius-sm: 10px;
|
|
--max-width: 800px;
|
|
--font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
|
|
--font-display: 'Lora', Georgia, serif;
|
|
--nav-height: 72px;
|
|
}
|
|
html { scroll-behavior: smooth; }
|
|
body {
|
|
font-family: var(--font-body);
|
|
background: var(--bg);
|
|
color: var(--text-primary);
|
|
line-height: 1.8;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
/* ── Navigation ── */
|
|
nav {
|
|
position: fixed; top: 0; left: 0; right: 0;
|
|
height: var(--nav-height);
|
|
background: rgba(252, 248, 245, 0.90);
|
|
backdrop-filter: blur(14px);
|
|
-webkit-backdrop-filter: blur(14px);
|
|
border-bottom: 1px solid var(--border);
|
|
z-index: 100;
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0 24px;
|
|
transition: box-shadow 0.3s;
|
|
}
|
|
nav.scrolled { box-shadow: var(--shadow-sm); }
|
|
.nav-inner {
|
|
max-width: var(--max-width);
|
|
width: 100%;
|
|
margin: 0 auto;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
.nav-brand {
|
|
font-family: var(--font-display);
|
|
font-size: 1.05rem;
|
|
font-weight: 500;
|
|
color: var(--text-primary);
|
|
text-decoration: none;
|
|
}
|
|
.nav-links { display: flex; gap: 2px; align-items: center; }
|
|
.nav-links a {
|
|
text-decoration: none;
|
|
color: var(--text-secondary);
|
|
font-size: 0.82rem;
|
|
font-weight: 500;
|
|
padding: 6px 12px;
|
|
border-radius: 20px;
|
|
transition: all 0.2s;
|
|
}
|
|
.nav-links a:hover { background: var(--pastel-lavender); color: var(--text-primary); }
|
|
.nav-links .btn-primary-nav {
|
|
background: var(--accent-lavender);
|
|
color: #fff;
|
|
}
|
|
.nav-links .btn-primary-nav:hover { background: #9575cd; color: #fff; }
|
|
.mobile-toggle { display: none; background: none; border: none; font-size: 1.3rem; color: var(--text-primary); cursor: pointer; }
|
|
|
|
/* ── Hero ── */
|
|
.hero {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 120px 24px 80px;
|
|
position: relative;
|
|
}
|
|
.hero::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: -30%;
|
|
right: -10%;
|
|
width: 600px;
|
|
height: 600px;
|
|
background: radial-gradient(circle, var(--pastel-lavender) 0%, transparent 70%);
|
|
opacity: 0.5;
|
|
pointer-events: none;
|
|
}
|
|
.hero::after {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: -20%;
|
|
left: -10%;
|
|
width: 500px;
|
|
height: 500px;
|
|
background: radial-gradient(circle, var(--pastel-mint) 0%, transparent 70%);
|
|
opacity: 0.4;
|
|
pointer-events: none;
|
|
}
|
|
.hero-inner {
|
|
max-width: var(--max-width);
|
|
width: 100%;
|
|
text-align: center;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
.hero-avatar {
|
|
width: 160px;
|
|
height: 160px;
|
|
border-radius: 50%;
|
|
object-fit: cover;
|
|
margin-bottom: 28px;
|
|
box-shadow: var(--shadow-md);
|
|
border: 3px solid var(--surface);
|
|
}
|
|
.hero-text h1 {
|
|
font-family: var(--font-display);
|
|
font-size: 2.8rem;
|
|
font-weight: 500;
|
|
line-height: 1.2;
|
|
margin-bottom: 6px;
|
|
letter-spacing: -0.01em;
|
|
}
|
|
.hero-text .subtitle {
|
|
font-size: 1.05rem;
|
|
color: var(--accent-rose);
|
|
font-weight: 500;
|
|
margin-bottom: 20px;
|
|
}
|
|
.hero-text .tagline {
|
|
font-size: 1.05rem;
|
|
color: var(--text-secondary);
|
|
line-height: 1.7;
|
|
max-width: 640px;
|
|
margin: 0 auto;
|
|
}
|
|
.hero-links { margin-top: 32px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
|
|
.hero-links a {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
text-decoration: none;
|
|
padding: 10px 24px;
|
|
border-radius: 30px;
|
|
font-weight: 500;
|
|
font-size: 0.88rem;
|
|
transition: all 0.2s;
|
|
}
|
|
.hero-links .btn-primary {
|
|
background: var(--accent-lavender);
|
|
color: #fff;
|
|
}
|
|
.hero-links .btn-primary:hover { background: #9575cd; transform: translateY(-2px); }
|
|
.hero-links .btn-secondary {
|
|
border: 1.5px solid var(--border);
|
|
color: var(--text-primary);
|
|
background: var(--surface);
|
|
}
|
|
.hero-links .btn-secondary:hover { border-color: var(--accent-lavender); transform: translateY(-2px); }
|
|
|
|
/* ── Section Shared ── */
|
|
section { padding: 90px 24px; }
|
|
.section-inner {
|
|
max-width: var(--max-width);
|
|
margin: 0 auto;
|
|
}
|
|
.section-label {
|
|
font-family: var(--font-display);
|
|
font-size: 0.8rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.1em;
|
|
color: var(--accent-rose);
|
|
font-weight: 400;
|
|
margin-bottom: 4px;
|
|
}
|
|
.section-title {
|
|
font-family: var(--font-display);
|
|
font-size: 1.8rem;
|
|
font-weight: 500;
|
|
margin-bottom: 32px;
|
|
letter-spacing: -0.01em;
|
|
line-height: 1.3;
|
|
}
|
|
.section-title .icon { color: var(--accent-lavender); margin-right: 10px; }
|
|
.section-body p {
|
|
margin-bottom: 18px;
|
|
color: var(--text-secondary);
|
|
font-size: 0.95rem;
|
|
}
|
|
.section-body p:last-child { margin-bottom: 0; }
|
|
|
|
section:nth-child(even) { background: var(--surface); }
|
|
|
|
/* ── Narrative Cards ── */
|
|
.narrative-card {
|
|
background: var(--bg);
|
|
border-radius: var(--radius);
|
|
padding: 32px;
|
|
margin-bottom: 20px;
|
|
border: 1px solid var(--border);
|
|
transition: box-shadow 0.2s;
|
|
}
|
|
.narrative-card:hover { box-shadow: var(--shadow-sm); }
|
|
.narrative-card h3 {
|
|
font-family: var(--font-display);
|
|
font-size: 1.15rem;
|
|
font-weight: 500;
|
|
margin-bottom: 2px;
|
|
}
|
|
.narrative-card .meta {
|
|
font-size: 0.85rem;
|
|
color: var(--accent-rose);
|
|
font-weight: 400;
|
|
margin-bottom: 12px;
|
|
}
|
|
.narrative-card p {
|
|
font-size: 0.92rem;
|
|
color: var(--text-secondary);
|
|
line-height: 1.7;
|
|
margin-bottom: 10px;
|
|
}
|
|
.narrative-card p:last-child { margin-bottom: 0; }
|
|
.narrative-card .tag {
|
|
display: inline-block;
|
|
font-size: 0.7rem;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.06em;
|
|
padding: 3px 10px;
|
|
border-radius: 12px;
|
|
margin-bottom: 10px;
|
|
}
|
|
.tag-lavender { background: var(--pastel-lavender); color: #7c5cbf; }
|
|
.tag-mint { background: var(--pastel-mint); color: #3d8b80; }
|
|
.tag-peach { background: var(--pastel-peach); color: #c76b3a; }
|
|
.tag-pink { background: var(--pastel-pink); color: #c94f6a; }
|
|
|
|
/* ── Education Timeline ── */
|
|
.edu-item {
|
|
padding: 20px 0;
|
|
border-bottom: 1px solid var(--border);
|
|
}
|
|
.edu-item:last-child { border-bottom: none; }
|
|
.edu-item h3 {
|
|
font-family: var(--font-display);
|
|
font-size: 1.05rem;
|
|
font-weight: 500;
|
|
margin-bottom: 1px;
|
|
}
|
|
.edu-item .meta {
|
|
font-size: 0.85rem;
|
|
color: var(--accent-rose);
|
|
margin-bottom: 4px;
|
|
}
|
|
.edu-item p {
|
|
font-size: 0.9rem;
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
/* ── Publications ── */
|
|
.pub-list { list-style: none; padding: 0; }
|
|
.pub-list li {
|
|
padding: 14px 0;
|
|
border-bottom: 1px solid var(--border);
|
|
font-size: 0.92rem;
|
|
color: var(--text-secondary);
|
|
line-height: 1.7;
|
|
}
|
|
.pub-list li:last-child { border-bottom: none; }
|
|
|
|
/* ── Contact ── */
|
|
#contact {
|
|
background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-mint));
|
|
text-align: center;
|
|
}
|
|
#contact .section-inner { max-width: 580px; }
|
|
#contact .section-title { font-size: 1.6rem; }
|
|
#contact p { color: var(--text-secondary); margin-bottom: 24px; font-size: 0.95rem; }
|
|
.contact-links {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
.contact-links a {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
text-decoration: none;
|
|
color: var(--text-primary);
|
|
font-weight: 500;
|
|
padding: 10px 20px;
|
|
border-radius: var(--radius-sm);
|
|
background: var(--surface);
|
|
transition: all 0.2s;
|
|
font-size: 0.9rem;
|
|
}
|
|
.contact-links a:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
|
|
.contact-links a i { width: 18px; color: var(--accent-lavender); }
|
|
.contact-downloads {
|
|
display: flex;
|
|
gap: 12px;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
margin-top: 20px;
|
|
}
|
|
.contact-downloads a {
|
|
display: inline-flex; align-items: center; gap: 8px;
|
|
padding: 10px 22px;
|
|
border-radius: 30px;
|
|
text-decoration: none;
|
|
font-weight: 500;
|
|
font-size: 0.88rem;
|
|
background: var(--surface);
|
|
color: var(--text-primary);
|
|
border: 1px solid var(--border);
|
|
transition: all 0.2s;
|
|
}
|
|
.contact-downloads a:hover { border-color: var(--accent-lavender); transform: translateY(-2px); }
|
|
|
|
/* ── Footer ── */
|
|
footer {
|
|
text-align: center;
|
|
padding: 28px 24px;
|
|
font-size: 0.8rem;
|
|
color: var(--text-muted);
|
|
border-top: 1px solid var(--border);
|
|
}
|
|
|
|
/* ── Responsive ── */
|
|
@media (max-width: 768px) {
|
|
.hero-text h1 { font-size: 2rem; }
|
|
.hero-avatar { width: 130px; height: 130px; }
|
|
.section-title { font-size: 1.5rem; }
|
|
.nav-links { display: none; }
|
|
.mobile-toggle { display: block; }
|
|
.nav-links.open {
|
|
display: flex;
|
|
flex-direction: column;
|
|
position: absolute;
|
|
top: var(--nav-height);
|
|
left: 0; right: 0;
|
|
background: var(--bg);
|
|
padding: 12px;
|
|
border-bottom: 1px solid var(--border);
|
|
gap: 2px;
|
|
}
|
|
.narrative-card { padding: 24px; }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<!-- Navigation -->
|
|
<nav id="navbar">
|
|
<div class="nav-inner">
|
|
<a href="#" class="nav-brand">Kayla Newkirk</a>
|
|
<button class="mobile-toggle" onclick="document.querySelector('.nav-links').classList.toggle('open')" aria-label="Toggle menu">
|
|
<i class="fa-solid fa-bars"></i>
|
|
</button>
|
|
<div class="nav-links">
|
|
<a href="#my-story">My Story</a>
|
|
<a href="#path">My Path</a>
|
|
<a href="#teaching">Teaching</a>
|
|
<a href="#supervision">Supervision</a>
|
|
<a href="#research">Research</a>
|
|
<a href="#connect" class="btn-primary-nav">Connect</a>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<!-- Hero -->
|
|
<section class="hero">
|
|
<div class="hero-inner">
|
|
<div class="hero-text">
|
|
<img src="headshot.webp" alt="Kayla Newkirk" class="hero-avatar" loading="lazy">
|
|
<p class="subtitle">Kayla Newkirk, MS.Ed, MHC-LP</p>
|
|
<h1>Counselor Educator<br>& Clinical Practitioner</h1>
|
|
<p class="tagline">
|
|
I believe that the heart of our work as counselors lies in the relationships we build,
|
|
the spaces we create, the communities we nurture, and the courage we have to walk
|
|
alongside one another through both struggle and growth.
|
|
</p>
|
|
<div class="hero-links">
|
|
<a href="#my-story" class="btn-primary"><i class="fa-solid fa-arrow-down"></i> Welcome</a>
|
|
<a href="Kayla_Newkirk_CV.pdf" class="btn-secondary" target="_blank"><i class="fa-regular fa-file-pdf"></i> CV</a>
|
|
<a href="Kayla_Newkirk_Resume.pdf" class="btn-secondary" target="_blank"><i class="fa-regular fa-file-lines"></i> Resume</a>
|
|
<a href="Profile.pdf" class="btn-secondary" target="_blank"><i class="fa-brands fa-linkedin"></i> Profile</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- My Story -->
|
|
<section id="my-story">
|
|
<div class="section-inner">
|
|
<p class="section-label">About</p>
|
|
<h2 class="section-title"><span class="icon"><i class="fa-regular fa-address-card"></i></span> My Story</h2>
|
|
<div class="section-body">
|
|
<p>
|
|
I am a limited permit mental health counselor (MHC-LP) and a PhD candidate in Counselor
|
|
Education and Supervision at Waynesburg University. The five pillars of our field define my
|
|
professional identity—counseling, supervision, teaching, research, and leadership and
|
|
advocacy—each one shaping how I show up in every space I occupy.
|
|
</p>
|
|
<p>
|
|
As a <strong>clinician</strong>, I practice from an Adlerian foundation integrated with
|
|
evidence-based strategies (CBT, ACT, motivational interviewing), creating affirming therapeutic
|
|
alliances rooted in cultural humility and ethical care. My clinical journey spans crisis
|
|
counseling at Contact Community Services, addiction treatment at the University of Arkansas,
|
|
community mental health at Branches of Growth, and private practice at True Talk Mental Health
|
|
Counseling. Each setting deepened my belief that the most meaningful work happens when we meet
|
|
people where they are, with genuine presence and humility.
|
|
</p>
|
|
<p>
|
|
As a <strong>supervisor</strong>, I use the Discrimination Model through a developmental
|
|
lens, flexing among the roles of teacher, counselor, and consultant to scaffold supervisee
|
|
growth. I have supervised master’s-level practicum and internship students at the
|
|
University of Arkansas and Waynesburg University, emphasizing strong supervisory alliances,
|
|
cultural responsiveness, and ethical grounding.
|
|
</p>
|
|
<p>
|
|
As a <strong>teacher</strong>, I design relationship-centered, equity-minded learning
|
|
experiences grounded in constructivist and adult-learning principles. I co-taught The Helping
|
|
Relationship at the University of Arkansas and served as a guest lecturer on REBT for doctoral
|
|
students, creating classrooms where psychological safety, cultural humility, and professional
|
|
identity development take center stage.
|
|
</p>
|
|
<p>
|
|
As a <strong>researcher</strong>, I am committed to scholarship that amplifies marginalized
|
|
voices and advances inclusive excellence. I have contributed to qualitative research on gaming
|
|
addiction, collaborated on a dissertation examining trans experiences within the U.S. prison
|
|
system, and co-authored a publication comparing asynchronous and synchronous learning in the
|
|
Journal of Counselor Preparation and Supervision—which was honored with the JCPS
|
|
Outstanding Journal Article Award in 2025.
|
|
</p>
|
|
<p>
|
|
And as a <strong>leader and advocate</strong>, my professional mission is grounded in
|
|
disability justice, universal design, and evolving the way we support counselors and students.
|
|
I serve as Co-Chair of the IAWC Doctoral Student Committee, sit on the ACES Continuing
|
|
Education Committee and Presidential Task Force, and serve with NARACES and ACAC. I have
|
|
also held roles ranging from process group facilitator to academic coach. These commitments
|
|
reflect my belief that advancing our profession and supporting the next generation of
|
|
counselors is not optional; it is essential.
|
|
</p>
|
|
<p>
|
|
Outside of my professional roles, I am someone who finds meaning in quiet moments of reflection,
|
|
in the honesty of a good conversation, and in the small, steady work of showing up. I believe
|
|
that good counseling and good teaching are not so different—they both ask us to listen carefully,
|
|
respond thoughtfully, and trust the process.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- My Path -->
|
|
<section id="path">
|
|
<div class="section-inner">
|
|
<p class="section-label">Education & Background</p>
|
|
<h2 class="section-title"><span class="icon"><i class="fa-solid fa-road"></i></span> My Path</h2>
|
|
<div class="section-body">
|
|
|
|
<div class="edu-item">
|
|
<h3>Ph.D., Counselor Education and Supervision</h3>
|
|
<p class="meta">Waynesburg University — 2025 to Present</p>
|
|
<p>Doctoral training in counselor supervision, teaching pedagogy, research methodology, and advanced clinical practice. My doctoral work centers on trauma-informed approaches to supervision and preparing future counselors to work with complex, marginalized populations.</p>
|
|
</div>
|
|
|
|
<div class="edu-item">
|
|
<h3>Ph.D., Counselor Education and Supervision (First Year Completed)</h3>
|
|
<p class="meta">University of Arkansas — 2023 to 2024</p>
|
|
<p>Completed the first year of doctoral studies, including an advanced supervision practicum, a teaching assistantship in an undergraduate helping relationships course, and collaborative research on gaming addiction and qualitative methodologies.</p>
|
|
</div>
|
|
|
|
<div class="edu-item">
|
|
<h3>MS.Ed., Clinical Mental Health Counseling, magna cum laude</h3>
|
|
<p class="meta">Saint Bonaventure University — 2023</p>
|
|
<p>A CACREP-accredited program that shaped my clinical foundation through internships in addiction counseling, community mental health, and university-based clinic settings. Here I learned that the most meaningful clinical work happens when we meet clients where they are, with humility and genuine presence.</p>
|
|
</div>
|
|
|
|
<div class="edu-item">
|
|
<h3>B.A., Psychology — Minor in Human Development</h3>
|
|
<p class="meta">SUNY Geneseo — 2019</p>
|
|
<p>My undergraduate years introduced me to the power of research and the complexity of human development. I worked as a research assistant studying language dynamics between children and their siblings and friends, and had the opportunity to present our findings at a national psychology conference.</p>
|
|
</div>
|
|
|
|
<div class="edu-item">
|
|
<h3>A.A., Liberal Arts, cum laude</h3>
|
|
<p class="meta">Cayuga Community College — 2016</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Awards & Recognition -->
|
|
<section id="awards">
|
|
<div class="section-inner">
|
|
<p class="section-label">Honors</p>
|
|
<h2 class="section-title"><span class="icon"><i class="fa-solid fa-trophy"></i></span> Awards & Recognition</h2>
|
|
<div class="section-body">
|
|
<ul class="pub-list">
|
|
<li><strong>JCPS Outstanding Journal Article Award</strong> — Journal of Counselor Preparation and Supervision, 2025</li>
|
|
<li><strong>Chi Sigma Iota Honor Society</strong> — Rho Alpha Beta Chapter, 2024</li>
|
|
<li><strong>Chi Sigma Iota Honor Society</strong> — Phi Rho Chapter, 2022–2023</li>
|
|
<li><strong>Phi Theta Kappa Honor Society</strong> — 2015</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Clinical Experience -->
|
|
<section id="clinical">
|
|
<div class="section-inner">
|
|
<p class="section-label">Clinical Work</p>
|
|
<h2 class="section-title"><span class="icon"><i class="fa-solid fa-hand-holding-heart"></i></span> Clinical Experience</h2>
|
|
|
|
<div class="narrative-card">
|
|
<span class="tag tag-lavender">Private Practice</span>
|
|
<h3>Limited Permit Mental Health Counselor</h3>
|
|
<p class="meta">True Talk Mental Health Counseling, Manhasset, NY — 2024 to Present</p>
|
|
<p>
|
|
I provide individual counseling to adults navigating anxiety, depression, life transitions,
|
|
and trauma. My approach is grounded in person-centered and cognitive-behavioral frameworks,
|
|
and I am intentional about creating a space where clients feel safe enough to explore the
|
|
parts of their lives that feel the most tender. Each session is an opportunity to witness
|
|
someone's resilience, and I carry that responsibility with care.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="narrative-card">
|
|
<span class="tag tag-mint">Crisis & Community</span>
|
|
<h3>Shift Lead / Crisis Line Counselor / Community Resource Specialist</h3>
|
|
<p class="meta">Contact Community Services, Syracuse, NY — 2021 to 2023</p>
|
|
<p>
|
|
On the other end of a crisis line, every call is different. Some callers need immediate
|
|
safety intervention; others need someone to listen without judgment at 2 AM. I managed calls
|
|
across eleven hotlines including the 988 Suicide and Crisis Lifeline, supervised shift operations,
|
|
coordinated with emergency services for life-saving interventions, and deployed Mobile Crisis
|
|
Teams for on-site support. I also served as a Community Resource Specialist, navigating the
|
|
211 system across 17 New York counties to connect callers with housing, food security, and
|
|
mental health services. This work taught me more about presence, patience, and the weight of
|
|
silence than any textbook could.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="narrative-card">
|
|
<span class="tag tag-mint">Case Management</span>
|
|
<h3>Case Manager / Transition Facilitator</h3>
|
|
<p class="meta">Coordinated Care Services, Inc. (CCSI), Syracuse, NY — Mar 2020 to Feb 2021</p>
|
|
<p>
|
|
I managed a caseload of 20 youth ages 16–21, supporting them in building goals,
|
|
forging community connections, and developing the skills for independent living. I acted as a
|
|
primary liaison between clinical providers, social service agencies, educational institutions,
|
|
and legal systems to provide holistic, cross-system care coordination. This boots-on-the-ground
|
|
casework deepened my understanding of systemic barriers and the kind of persistent advocacy
|
|
that effective support requires.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="narrative-card">
|
|
<span class="tag tag-peach">Addiction</span>
|
|
<h3>Substance Education, Assessment & Recovery (SEAR) Intern</h3>
|
|
<p class="meta">University of Arkansas Online Clinic — 2023</p>
|
|
<p>
|
|
Working with clients navigating substance use disorders, I learned how deeply shame and
|
|
stigma can wound. My role involved conducting comprehensive intake evaluations and assessments,
|
|
developing individualized treatment plans, and offering individual counseling with evidence-based
|
|
approaches. I also facilitated Narcan training sessions and community education initiatives to
|
|
enhance local crisis response and promote harm reduction. I carried forward a lasting belief
|
|
that recovery is not a straight line, and our job as counselors is to walk alongside, not ahead.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="narrative-card">
|
|
<span class="tag tag-pink">Community Mental Health</span>
|
|
<h3>Master’s Level Intern — Clinical Mental Health Counseling</h3>
|
|
<p class="meta">Branches of Growth Mental Health Counseling, PLLC, Cicero, NY & University of Arkansas — 2022 to 2023</p>
|
|
<p>
|
|
Across two internship placements, I provided both in-person and remote counseling to clients
|
|
facing a range of concerns from academic stress to deep personal challenges. I conducted
|
|
comprehensive intake assessments, built treatment plans collaboratively, and learned to
|
|
adapt my approach to each client’s unique context and culture.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Teaching -->
|
|
<section id="teaching">
|
|
<div class="section-inner">
|
|
<p class="section-label">Teaching</p>
|
|
<h2 class="section-title"><span class="icon"><i class="fa-solid fa-chalkboard-user"></i></span> Teaching & Facilitation</h2>
|
|
|
|
<div class="narrative-card">
|
|
<span class="tag tag-lavender">Co-Instructor</span>
|
|
<h3>The Helping Relationship — CNED 3053</h3>
|
|
<p class="meta">University of Arkansas, Undergraduate — Fall 2023</p>
|
|
<p>
|
|
I co-taught this undergraduate elective for students exploring helping professions like
|
|
counseling, teaching, and coaching. We focused on foundational skills that are deceptively
|
|
simple and profoundly hard: listening without fixing, sitting with discomfort, offering
|
|
empathy genuinely. Students practiced through mock interviews, reflective writing, and
|
|
group presentations that pushed them to engage not just with the material, but with themselves.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="narrative-card">
|
|
<span class="tag tag-mint">Guest Lecturer</span>
|
|
<h3>Advanced Counseling Theory & Methods — CNED 6013</h3>
|
|
<p class="meta">University of Arkansas, Doctoral-Level — Spring 2024</p>
|
|
<p>
|
|
I was invited to deliver a lecture on Rational Emotive Behavior Therapy (REBT) to a
|
|
CACREP-accredited doctoral class. I created research-based materials connecting REBT's
|
|
historical foundations to its contemporary clinical applications, and facilitated a peer-level
|
|
discussion on how theory shows up in practice. Teaching doctoral students reminded me that
|
|
learning is never finished, and the best teachers remain students at heart.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="narrative-card">
|
|
<span class="tag tag-peach">Workshops & Community</span>
|
|
<h3>Wellness, Study Skills & Community Presentations</h3>
|
|
<p class="meta">University of Arkansas & Onondaga County Library — 2022 to 2024</p>
|
|
<p>
|
|
I have led workshops on mindfulness, stress management, and academic success strategies
|
|
in settings ranging from university classrooms to public libraries. Whether teaching a group
|
|
of engineering students how to prepare for finals or offering a guided imagery exercise to
|
|
colleagues, I aim to make wellness practices accessible, practical, and grounded in evidence.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="narrative-card">
|
|
<span class="tag tag-peach">Media & Community</span>
|
|
<h3>Grad Speech & Psychoeducation Videos</h3>
|
|
<p class="meta">Selected Presentations — 2023 to 2024</p>
|
|
<p>
|
|
I was honored to deliver the student speech at St. Bonaventure University’s graduate
|
|
commencement ceremony, reflecting on the journey through graduate study and the calling
|
|
that brings us to this work.
|
|
</p>
|
|
<div class="video-embed" style="margin: 12px 0;">
|
|
<div class="ratio ratio-16x9" style="max-width: 480px;">
|
|
<iframe src="https://www.youtube.com/embed/_pNKlE0xj14" title="Kayla Newkirk's St. Bonaventure Graduate Speech" allowfullscreen loading="lazy" style="border-radius: 10px; width: 100%; aspect-ratio: 16/9;"></iframe>
|
|
</div>
|
|
</div>
|
|
<p style="margin-top: 12px;">
|
|
I have also created psychoeducation content shared publicly:
|
|
<a href="https://youtu.be/1vxL2TaIFRs" target="_blank">Mindfulness 101: Stress to Rest</a>
|
|
and
|
|
<a href="https://youtu.be/aZ9_oveH5qU" target="_blank">Stress Management Strategies</a>.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Supervision -->
|
|
<section id="supervision">
|
|
<div class="section-inner">
|
|
<p class="section-label">Supervision</p>
|
|
<h2 class="section-title"><span class="icon"><i class="fa-solid fa-people-arrows"></i></span> Supervision Experience</h2>
|
|
|
|
<div class="narrative-card">
|
|
<span class="tag tag-lavender">Doctoral Supervisor</span>
|
|
<h3>Internship Supervision</h3>
|
|
<p class="meta">Waynesburg University — Fall 2025 to Present</p>
|
|
<p>
|
|
I currently supervise two master's-level internship students, supporting them as they
|
|
transition toward independent practice. Our work together focuses on professional identity
|
|
development, advanced intervention strategies, and navigating the complexity that comes with
|
|
longer-term client relationships. I evaluate their growth through direct observation, case
|
|
presentations, and thoughtful documentation, always with an eye toward what they need most
|
|
at this stage of their development.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="narrative-card">
|
|
<span class="tag tag-mint">Doctoral Supervisor</span>
|
|
<h3>Practicum Supervision</h3>
|
|
<p class="meta">Waynesburg University — Summer 2025</p>
|
|
<p>
|
|
I supervised two master's-level practicum students as they took their first steps into
|
|
clinical work. These early sessions are formative, and I worked to create a supervision
|
|
environment where students felt safe enough to be uncertain, honest enough to ask hard
|
|
questions, and supported enough to take risks with their clients.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="narrative-card">
|
|
<span class="tag tag-peach">Doctoral Supervisor</span>
|
|
<h3>Practicum & Internship Supervision</h3>
|
|
<p class="meta">University of Arkansas — Spring 2024</p>
|
|
<p>
|
|
I provided clinical supervision to four master's-level students across practicum and
|
|
internship placements. Each week we met to review case conceptualizations, explore ethical
|
|
dilemmas, and build documentation skills. I learned that supervision is not about having
|
|
all the answers, but about asking the questions that help supervisees find their own.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Research & Publications -->
|
|
<section id="research">
|
|
<div class="section-inner">
|
|
<p class="section-label">Research & Scholarship</p>
|
|
<h2 class="section-title"><span class="icon"><i class="fa-solid fa-flask"></i></span> Research & Publications</h2>
|
|
<div class="section-body">
|
|
|
|
<h3 style="font-family:var(--font-display); font-size:1.05rem; font-weight:500; margin-bottom:8px;">Publication</h3>
|
|
<ul class="pub-list">
|
|
<li>
|
|
<strong>Henry, H., Newkirk, K.,</strong> & Guggenberger, L.
|
|
"The Power of Choice: Comparing Asynchronous and Synchronous Learning."
|
|
<em>Journal of Counselor Preparation and Supervision</em>, 2025.
|
|
</li>
|
|
</ul>
|
|
|
|
<h3 style="font-family:var(--font-display); font-size:1.05rem; font-weight:500; margin:28px 0 8px;">Research Experience</h3>
|
|
|
|
<div class="narrative-card">
|
|
<span class="tag tag-lavender">Qualitative Research</span>
|
|
<h3>Prone to Prejudice: Trans Experiences and Structural Harm in the U.S. Prison System</h3>
|
|
<p class="meta">Dissertation Research Collaboration, University of Arkansas — 2025</p>
|
|
<p>
|
|
I collaborated on qualitative data analysis for a dissertation examining the experiences
|
|
of transgender individuals within the U.S. prison system. I applied thematic coding
|
|
techniques to over 60 post-incarceration statements, identifying emergent themes and
|
|
patterns that illuminated the structural harm these individuals endure. This work reinforced
|
|
my commitment to research that amplifies marginalized voices and presses toward justice.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="narrative-card">
|
|
<span class="tag tag-mint">Addiction Research</span>
|
|
<h3>Gaming Addiction Study</h3>
|
|
<p class="meta">Research Assistant, University of Arkansas — 2023</p>
|
|
<p>
|
|
I was part of a research team investigating gaming addiction, where I coded over 250
|
|
individual gaming posts for qualitative patterns and contributed to team coding of over
|
|
500 posts. This experience taught me the discipline of rigorous qualitative analysis and
|
|
the importance of collaborative, consensus-driven research processes.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="narrative-card">
|
|
<span class="tag tag-peach">Developmental Psychology</span>
|
|
<h3>Language Dynamics in Children's Relationships</h3>
|
|
<p class="meta">Research Assistant, SUNY Geneseo — 2017 to 2019</p>
|
|
<p>
|
|
I studied how seven-year-old children use assertive and affiliative language differently
|
|
depending on whether they are interacting with siblings or friends. I analyzed video
|
|
recordings, calculated language patterns, and collaborated with the research team to
|
|
present our findings at the Association for Psychological Science 31st Annual Convention
|
|
in Washington, D.C. and at SUNY Geneseo's GREAT Day.
|
|
</p>
|
|
</div>
|
|
|
|
<h3 style="font-family:var(--font-display); font-size:1.05rem; font-weight:500; margin:28px 0 8px;">Selected Presentations</h3>
|
|
<ul class="pub-list">
|
|
<li>
|
|
<strong>"Virtual Vitality: Bridging the CSI Counselor Wellness Competencies and the CHANGES
|
|
Model for Accessible Telehealth Supervision"</strong> — IAWC 2026 World Conference,
|
|
Dallas, TX. May 2026. 30-minute oral presentation examining supervision practices tailored
|
|
to clinicians and supervisees with invisible disabilities, advancing inclusive and universally
|
|
designed approaches to telehealth supervision.
|
|
</li>
|
|
<li>
|
|
"Evaluation in Counseling Supervision: Enhancing Practice through Feedback" — Virtual
|
|
continuing education presentation with Jennifer Morris, LPC. Spring 2024. 20+ local
|
|
practitioners attended.
|
|
</li>
|
|
<li>
|
|
"We Care on the Go" — Guided imagery and psychoeducation session.
|
|
University of Arkansas, GRAD 340. April 2024.
|
|
</li>
|
|
<li>
|
|
Narcan Training — Substance Education, Assessment, and Recovery (SEAR) Ambassadors.
|
|
Alpha Chi Omega Sorority House, Fayetteville, AR. 2023.
|
|
</li>
|
|
<li>
|
|
"Implementing Evidence-Based Wellness Practices for Counselors to Mitigate Long-Term
|
|
Professional Burnout" — CSI Days Virtual Poster Session. 2022–2023.
|
|
</li>
|
|
<li>
|
|
"Mindfulness 101: Stress to Rest" — Virtual presentation and Onondaga County Library. July 2023.
|
|
</li>
|
|
<li>
|
|
"Stress Management" — Virtual presentation and Onondaga County Library. July 2023.
|
|
</li>
|
|
<li>
|
|
"Gender and Task in 7-Year Old's Assertive and Afflictive Language with Siblings and Friend"
|
|
— APS 31st Annual Convention, Washington D.C., 2019 and SUNY Geneseo GREAT Day, 2019.
|
|
</li>
|
|
</ul>
|
|
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Service & Leadership -->
|
|
<section id="service">
|
|
<div class="section-inner">
|
|
<p class="section-label">Service</p>
|
|
<h2 class="section-title"><span class="icon"><i class="fa-solid fa-handshake"></i></span> Academic Service & Leadership</h2>
|
|
|
|
<div class="narrative-card">
|
|
<span class="tag tag-lavender">Doctoral Student Committee Co-Chair</span>
|
|
<h3>IAWC Doctoral Student Committee</h3>
|
|
<p class="meta">International Association of Women in Counseling — 2025 to 2026</p>
|
|
<p>
|
|
As co-chair of the IAWC Doctoral Student Committee, I helped shape the doctoral student
|
|
experience at the 2026 World Conference in Dallas. I organized and moderated an interactive
|
|
panel session, coordinated the doctoral student mixer, and managed conference logistics
|
|
including speaker coordination, attendee engagement, and mentorship programming. This role
|
|
deepened my commitment to creating spaces where emerging counselors and educators can find
|
|
connection, mentorship, and community.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="narrative-card">
|
|
<span class="tag tag-lavender">Committee Member</span>
|
|
<h3>ACES Continuing Education Committee</h3>
|
|
<p class="meta">Association for Counselor Education and Supervision — 2025 to 2026</p>
|
|
<p>
|
|
As a member of the ACES Continuing Education Committee, I contribute to shaping professional
|
|
development opportunities for counselor educators and supervisors nationwide, helping ensure
|
|
that continuing education offerings remain relevant, rigorous, and responsive to the field’s
|
|
evolving needs.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="narrative-card">
|
|
<span class="tag tag-lavender">Committee Member</span>
|
|
<h3>ACES Presidential Task Force</h3>
|
|
<p class="meta">Association for Counselor Education and Supervision — 2025 to 2026</p>
|
|
<p>
|
|
Serving on the ACES Presidential Task Force, I contribute to national initiatives shaping
|
|
the future of counselor education, alongside leaders in the field.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="narrative-card">
|
|
<span class="tag tag-mint">Reviewer & Member</span>
|
|
<h3>NARACES & ACAC Service</h3>
|
|
<p class="meta">Northeastern Association for Counselor Education and Supervision — 2025 to Present</p>
|
|
<p>
|
|
I actively serve on national and international committees for NARACES and the Association
|
|
of Child and Adolescent Counseling (ACAC), peer-reviewing national proposals and managing
|
|
competitive review pipelines.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="narrative-card">
|
|
<span class="tag tag-mint">Graduate Assistantship</span>
|
|
<h3>Calculus Academic Coach</h3>
|
|
<p class="meta">University of Arkansas — 2023 to 2024</p>
|
|
<p>
|
|
As a graduate assistant for the College of Engineering, I worked one-on-one with 10 to 15
|
|
students each semester to help them build academic skills, study strategies, and confidence.
|
|
I also collaborated with faculty to develop course content and department-wide academic
|
|
support initiatives. This role taught me that teaching is not just about content, it is
|
|
about helping someone discover that they are capable of more than they believe.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="narrative-card">
|
|
<span class="tag tag-mint">Group Facilitation</span>
|
|
<h3>CMHC Program Process Group Facilitator</h3>
|
|
<p class="meta">University of Arkansas — 2023</p>
|
|
<p>
|
|
I designed and facilitated a weekly process group for master's students in the Clinical
|
|
Mental Health Counseling program. The group was a space for students to reflect on their
|
|
growth, offer honest feedback to one another, and practice the interpersonal skills that
|
|
are at the core of our work as counselors.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="narrative-card">
|
|
<span class="tag tag-peach">Graduate Assistantship</span>
|
|
<h3>Research and Departmental Support</h3>
|
|
<p class="meta">St. Bonaventure University — 2021 to 2023</p>
|
|
<p>
|
|
I supported faculty research by locating and reviewing literature, writing literature
|
|
reviews, and co-authoring a journal article. Over 300 hours of collaborative work across
|
|
multiple departmental projects deepened my appreciation for the scholarship that informs
|
|
our clinical and teaching practices.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Connect -->
|
|
<section id="connect">
|
|
<div class="section-inner">
|
|
<p class="section-label">Connect</p>
|
|
<h2 class="section-title">Let's Connect</h2>
|
|
<p>
|
|
Whether you are a prospective student exploring the field, a fellow educator interested in
|
|
collaboration, or someone who simply wants to reach out, I would love to hear from you.
|
|
The best conversations are the ones where we show up as we are.
|
|
</p>
|
|
<div class="contact-links">
|
|
<a href="mailto:kayla.newkirk@student.waynesburg.edu">
|
|
<i class="fa-regular fa-envelope"></i> kayla.newkirk@student.waynesburg.edu
|
|
</a>
|
|
<a href="https://www.linkedin.com/in/kayla-newkirk-986b32182/" target="_blank">
|
|
<i class="fa-brands fa-linkedin-in"></i> Connect on LinkedIn
|
|
</a>
|
|
</div>
|
|
<div class="contact-downloads">
|
|
<a href="Kayla_Newkirk_CV.pdf" target="_blank">
|
|
<i class="fa-regular fa-file-pdf"></i> Download CV
|
|
</a>
|
|
<a href="Kayla_Newkirk_Resume.pdf" target="_blank">
|
|
<i class="fa-regular fa-file-lines"></i> Download Resume
|
|
</a>
|
|
<a href="Profile.pdf" target="_blank">
|
|
<i class="fa-brands fa-linkedin"></i> LinkedIn Profile
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Footer -->
|
|
<footer>
|
|
<p>© 2025 Kayla Newkirk. Built with care in Syracuse, NY.</p>
|
|
</footer>
|
|
|
|
<!-- Nav scroll effect -->
|
|
<script>
|
|
window.addEventListener('scroll', () => {
|
|
document.getElementById('navbar').classList.toggle('scrolled', window.scrollY > 20);
|
|
});
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|