<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:media="http://search.yahoo.com/mrss/"
	
	>

<channel>
	<title>Portfolio</title>
	<link>https://kathrynshimmin.com</link>
	<description>Portfolio</description>
	<pubDate>Mon, 14 Sep 2026 14:29:09 +0000</pubDate>
	<generator>https://kathrynshimmin.com</generator>
	<language>en</language>
	
		
	<item>
		<title>Bio</title>
				
		<link>https://kathrynshimmin.com/Bio</link>

		<pubDate>Mon, 14 Sep 2026 14:29:09 +0000</pubDate>

		<dc:creator>Portfolio</dc:creator>

		<guid isPermaLink="true">https://kathrynshimmin.com/Bio</guid>

		<description>

Katie Shimmin — Design Director Portfolio




*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --accent: #ec5d5e;
  --accent-text: #b91c1c;
  --accent-dark: #991b1b;
  --accent-secondary: #ff9592;
  --accent-tertiary: #ffd1d9;
  --tag-bg: #fef2f2;
  --tag-color: #991b1b;
  --bg: #ffffff;
  --layer-01: #f4f4f4;
  --layer-02: #f9f0f0;
  --border-subtle: #e0e0e0;
  --text-primary: #161616;
  --text-secondary: #525252;
  --text-muted: #6f6f6f;
  --font: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
}
html { font-family: var(--font); font-size: 16px; scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text-primary); line-height: 1.6; }
p { font-size: .875rem; color: var(--text-secondary); margin-bottom: 1rem; line-height: 1.7; }
p:last-child { margin-bottom: 0; }
@media (prefers-reduced-motion: reduce) { * { transition: none !important; animation: none !important; } }



/* ─── Hero ──────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #1a0505 0%, #3b0a1a 30%, #7a1f2e 58%, #ec5d5e 80%, #ff3cac 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 200px 2rem 4rem 3rem;
  text-align: left;
}

.hero-inner {
  max-width: 860px;
  width: 100%;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3.5rem;
  align-items: flex-start;
  margin-left:50px;
}

.hero-photo {
  flex-shrink: 0;
  padding-top: 1.75rem;
}
.hero-photo img {
  width: 100%;
  border-radius: 50%;
  display: block;
  aspect-ratio: 1;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,.25);
}

.hero-copy { 
display: flex; flex-direction: column; 
margin-left: 50px;
}

.hero-eyebrow {
  font-size: 2.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.55);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .625rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1.5px;
  background: rgba(255,255,255,.4);
  flex-shrink: 0;
}

.hero-name {
  font-size: .8875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.55);
  margin-bottom: .75rem;
}

.hero-tagline {
  font-size: clamp(2.75rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: rgba(255,255,255,.8);
  margin-bottom: 1.75rem;
}

.hero-divider {
  width: 36px;
  height: 1.5px;
  background: rgba(255,255,255,.35);
  margin-bottom: 1.75rem;
}

.hero-bio {
  font-size: 1.3rem;
  font-weight: 300;
  color: rgba(255,255,255,.7);
  line-height: 1.2;
  margin-bottom: 2.5rem;
}

/* ─── Recognition ───────────────────────────────────────── */
.recog-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem 6rem;
}

.recog-eyebrow {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent-text);
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.recog-eyebrow::before {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
  flex-shrink: 0;
}

.recog-section h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 2.5rem;
  color: var(--text-primary);
}
.recog-section h2 strong { font-weight: 600; }

.recognition-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
}

.recognition-item {
  background: var(--bg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: background .15s;
}
.recognition-item:hover { background: var(--layer-01); }

.recog-title {
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-primary);
}
.recog-body {
  font-size: .8125rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}
.recog-meta {
  font-size: .7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: .25rem;
}

/* ─── Footer ────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border-subtle);
  padding: 2rem 0;
  text-align: center;
  font-size: .75rem;
  color: var(--text-muted);
}
footer a { color: var(--text-muted); text-decoration: none; }
footer a:hover { color: var(--accent-text); }

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 700px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-divider { margin-left: auto; margin-right: auto; }
  .hero-photo img { width: 140px; margin: 0 auto; }
  .hero-section { padding: 5rem 1.25rem 3rem; }
  .recog-section { padding: 3rem 1.25rem 4rem; }
  .recognition-strip { grid-template-columns: 1fr; }
}











&#60;img width="836" height="836" width_o="836" height_o="836" data-src="https://freight.cargo.site/t/original/i/9b7e7b659fbafd1620a0a83d4373d612485e9024c2432cbea68559a1b45ee9bd/headshot_Circle.png" data-mid="252137254" border="0" data-scale="16" data-no-zoom src="https://freight.cargo.site/w/836/i/9b7e7b659fbafd1620a0a83d4373d612485e9024c2432cbea68559a1b45ee9bd/headshot_Circle.png" /&#62;





Katie Shimmin &#124; Experience Design Leader






Connecting vision to value through design, emerging tech, &#38;amp; human-centered innovation




I turn big ideas into experiences people don't forget. Whether it's an executive briefing or an innovation showcase, I bring creative vision, strategic clarity, and the energy to make it land. I'm fluent in AI and emerging tech, and I know how to make complex ideas feel exciting and accessible to executive audiences.
LEADERSHIP PHILOSOPHY



	

“The first and most important choice a leader makes is the choice to serve.”-Robert K. Greenleaf
	A philosophy built on earned trust.
I lead as though I'm always up for re-election. If my peers, direct reports, and leaders wouldn't enthusiastically vote for another term, then I haven't served them well enough.




Recognition
Work that got noticed.



 
&#60;img width="576" height="576" width_o="576" height_o="576" data-src="https://freight.cargo.site/t/original/i/0b16533b95f2a1fb42b30031420d92fd0b005d7d5b8a0efcc0e4cc1b514ce8cd/Artemis.svg" data-mid="252137256" border="0" data-scale="17" data-no-zoom src="https://freight.cargo.site/w/576/i/0b16533b95f2a1fb42b30031420d92fd0b005d7d5b8a0efcc0e4cc1b514ce8cd/Artemis.svg" /&#62;IBM Artemis Program — Top 7 of 2,000
Selected by IBM's worldwide CE VP from 2,000 practitioners worldwide. A handpicked cohort charged with transforming how pre-sales operates as a business. This isn't a participation award. It's a recognition that the way I work sets a standard worth scaling.
Top Global Performer · 2024


 
&#60;img width="784" height="517" width_o="784" height_o="517" data-src="https://freight.cargo.site/t/original/i/ceb7beb8078ec518b7f7abb4cfa42a2b4670585efa300971f138058b45f5616d/pr-award.png" data-mid="252137257" border="0" data-scale="21" data-no-zoom src="https://freight.cargo.site/w/784/i/ceb7beb8078ec518b7f7abb4cfa42a2b4670585efa300971f138058b45f5616d/pr-award.png" /&#62;


The Candle Power — Yankee Candle Pop-Up
Recognized for innovative storytelling, creativity, and measurable results at the Yankee Candle pop-up experience.
PR Platinum Award · 2018


 
&#60;img width="1464" height="1200" width_o="1464" height_o="1200" data-src="https://freight.cargo.site/t/original/i/db7db25a31466d12085334c8a286338ce9b3d2b5395944ef389e29012992dfa7/AIGA.png" data-mid="252137255" border="0" data-scale="20" data-no-zoom src="https://freight.cargo.site/w/1000/i/db7db25a31466d12085334c8a286338ce9b3d2b5395944ef389e29012992dfa7/AIGA.png" /&#62;Accepted into the AIGA Archives
Storytelling and experience design work exploring the impact of color, material, and finish on business outcomes for CPG company Newell Brands.
AIGA Archives · West Michigan · 2018




© 2026 Katie Shimmin
</description>
		
	</item>
		
	</channel>
</rss>