@charset "UTF-8";
/* ===================== FONTS ===================== */
@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap');
/* ===================== THEME TOKENS ===================== */ :root {
  /* Backgrounds */
  --color-bg: #ffffff; /* Light gray background instead of warm beige */
  --color-bg-darker: #dcdcdc; /* Slightly darker gray background */
  --color-surface: #ffffff; /* Keep surfaces clean and white */
  --color-bg-light: #f9f9f9;
  /* Text */
  --color-text: #444444; /* Dark neutral gray for main text */
  --color-text-dark: #111111; /* Nearly black for strong contrast text */
  --color-text-muted: #6c6c6c; /* Muted gray tone for secondary text */
  /* Borders and Dividers */
  --rule: #cccccc; /* Neutral gray for rules */
  --color-border: #cccccc;
  /* Brand Color */
  --color-brand: #3366CC;
  --color-brand-tint: #EFF3FB;
  --color-brand-hover: #3056a9;
  /* Links */
  --color-link: var(--color-brand);
  --color-link-hover: var(--color-brand-hover);
  /* Navigation / Panel Areas – Already dark themed */
  --color-nav-bg: #111318;
  --color-nav-fg: #ffffff;
  --color-nav-hover: #232a36;
  --color-overlay: rgba(0, 0, 0, 0.95);
  --color-panel-bg: #171a21;
  --color-panel-fg: #ffffff;
  --color-panel-border: #2a2f3a;
  /* UI Tokens */
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .06);
  --shadow-md: 0 6px 16px rgba(0, 0, 0, .1);
  /* Fonts & Layout */
  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-serif: "Source Serif 4", serif;
  --content-max: 1100px;
  --space-outer: 3rem;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --maxw: 1100px;
  --maxw-md: 800px;
  --primary-color-rgb-1: 51, 102, 204;
}
/* mobile tokens medium screen */
@media (max-width: 650px) {
  :root {
    --space-outer: 3rem;
  }
}
/* mobile tokens small screen */
@media (max-width: 400px) {
  :root {
    --space-outer: 1rem;
  }
}


/* Webby Badge */

.webby-badge {
	width: 150px;
	height: 150px;
	background-image: url('../img/Site_Badges_2026_webby_nominee.webp');
	background-size: cover;
	position: fixed;
	bottom: 10px;
	right: 10px;
}

/* ===================== SPACING ===================== */

/* Margin Top Utilities */
.mt-0 {
  margin-top: 0;
}
.mt-1 {
  margin-top: 1rem;
}
.mt-2 {
  margin-top: 2rem;
}
.mt-3 {
  margin-top: 3rem;
}
.mt-4 {
  margin-top: 4rem;
}
/* Margin Bottom Utilities */
.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 2rem;
}
.mb-3 {
  margin-bottom: 3rem;
}
.mb-4 {
  margin-bottom: 4rem;
}
/* Padding Top Utilities */
.pt-0 {
  padding-top: 0;
}
.pt-1 {
  padding-top: 1rem;
}
.pt-2 {
  padding-top: 2rem;
}
.pt-3 {
  padding-top: 3rem;
}
.pt-4 {
  padding-top: 4rem;
}
/* Padding Bottom Utilities */
.pb-0 {
  padding-bottom: 0;
}
.pb-1 {
  padding-bottom: 1rem;
}
.pb-2 {
  padding-bottom: 2rem;
}
.pb-3 {
  padding-bottom: 3rem;
}
.pb-4 {
  padding-bottom: 4rem;
}
/* ===================== GLOBAL ===================== */
* {
  box-sizing: border-box;
}
html, body {
  display: flex;
  flex-direction: column;
  margin: 0;
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
/*
  background:
    radial-gradient(circle at top left, rgba(var(--primary-color-rgb-1), 0.15), transparent 50%), radial-gradient(circle at bottom right, rgba(var(--primary-color-rgb-1), 0.15), transparent 50%), var(--color-bg);
  background-repeat: no-repeat;
  background-size: cover;
*/
}
main {
  flex: 1;
}
.material-symbols-outlined {
  display: inline-block;
  line-height: 1;
  font-variation-settings: 'FILL'0, 'wght'400, 'GRAD'0, 'opsz'24;
}
.card-lg {
  border-radius: var(--radius);
  background: #fff;
  padding: 2rem;
  border: solid 1px var(--rule);
  margin-bottom: 2rem;
}
.card-sm {
  border-radius: var(--radius);
  background: #fff;
  padding: 1rem;
  border: solid 1px var(--rule);
  margin-bottom: 1rem;
}
.container-contrast {
  border-radius: var(--radius);
  background: #fff;
  padding: 2rem;
  border: solid 1px var(--rule);
  margin-bottom: 2rem;
  background-color: var(--color-bg-light);
}
/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-sans);
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 var(--space-3);
  color: var(--color-text-dark);
  text-wrap: balance;
}
.home-styles {
  text-align: center;
}
.home-styles h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 2.5rem;
}
.intro-body {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  text-align: center;
  line-height: 1.5;
}
h1 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
}
h2 {
  font-size: 1.6rem;
}
h3 {
  font-size: 1.3rem;
}
p {
  margin: 0 0 var(--space-4);
  line-height: 1.7;
  font-size: 1.15rem;
}
li {
  line-height: 1.7;
  font-size: 1.15rem;
}
a {
  color: var(--color-link);
  text-decoration: none;
  transition: color .2s ease;
}
a:hover {
  color: var(--color-link-hover);
  text-decoration: underline;
}
hr {
  height: 1px;
  background-color: var(--color-border);
  border: none;
}
/* ===================== CONTACT/SERVICES ===================== */
.bio-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2rem;
}
.headshot {
  overflow: hidden;
  border-radius: 1rem;
}
.headshot img {
  width: 100%;
  display: block;
}
/* ===================== BUTTONS ===================== */
.btn_large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  font-family: var(--font-sans);
  font-weight: normal;
  font-size: 1.25rem;
  color: #fff;
  background: var(--color-brand);
  padding: 1rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}
.btn_large .material-symbols-outlined {
  font-size: 1.25em;
  position: relative;
  top: 0.5px;
  transition: transform 0.25s ease;
}
.btn_large:hover {
  background: var(--color-brand-hover);
  /*  transform: translateY(-1px);*/
  color: #fff;
  text-decoration: none;
}
.btn_large:hover .material-symbols-outlined {
  transform: translateX(4px);
  text-decoration: none;
}
.btn_large:active {
  transform: translateY(0);
}
/* ===================== WRAPPER ===================== */
.wrap {
  max-width: var(--maxw);
  margin: 3rem auto;
  padding: 0 var(--space-outer);
}
.wrap-md {
  max-width: var(--maxw-md);
  margin: 3rem auto;
  padding: 0 var(--space-outer);
}
/* ===================== SECTIONS ===================== */
.home-section {
  margin-bottom: 5rem;
  margin-top: 2rem;
}
.home-copy-container {
  border-top: solid 1px var(--color-border);
  padding: 2rem 0;
}
.home-columns h2 {
  font-size: 1.75rem;
}
/* ===================== NAV ===================== */
/* header */
.header-bg {
  background-color: var(--color-nav-bg);
  width: 100%;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem var(--space-outer);
  position: relative;
  width: 100%;
  margin: 0 auto;
  color: #fff;
  max-width: var(--content-max);
}
.header-logo {
  max-width: 260px;
  font-size: 1.125rem;
  color: white;
  font-weight: 500;
  font-family: var(--font-sans);
}
.header-logo a {
  color: white;
  text-decoration: none;
}
.header-logo img {
  display: block;
  width: 100%;
}
/* checkbox hidden */
header input[type=checkbox] {
  display: none;
}
/* off-canvas nav: animate panel only */
nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: var(--color-nav-bg);
  z-index: 9998;
  padding-top: 30px;
  overflow-y: auto;
  /* animation-friendly props */
  transform: translateX(40px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 400ms cubic-bezier(.22, .61, .36, 1), opacity 300ms ease, visibility 0s linear 400ms; /* hide after slide finishes */
  box-shadow: -24px 0 40px rgba(0, 0, 0, .28);
  will-change: transform, opacity;
}
/* open state */
.open-menu:checked ~ nav {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    transform 420ms cubic-bezier(.22, .61, .36, 1), opacity 300ms ease, visibility 0s; /* visible immediately */
}
/* list */
nav ul {
  list-style: none;
  padding: 15px 30px;
  margin: 0;
}
nav ul li {
  margin-bottom: 10px;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  transition: background .2s ease;
}
nav a:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  text-decoration: none;
}
/* icons and toggles */
label.open-icon {
  display: inline-block;
  cursor: pointer;
  z-index: 9999;
  transition: opacity 200ms ease;
}
label.close-icon {
  display: block;
  cursor: pointer;
  text-align: right;
  padding-bottom: 14px;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}
.open-icon i, .close-icon i {
  font-size: 30px;
  color: #fff;
}
/* hide hamburger when open */
.open-menu:checked + label.open-icon {
  opacity: 0;
  pointer-events: none;
}
/* overlay: fade only */
.nav-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
  z-index: 9997;
}
.open-menu:checked ~ .nav-overlay {
  opacity: 1;
  pointer-events: auto;
}
/* tiny screens: full width panel */
@media (max-width:400px) {
  nav {
    width: 100%;
  }
}
/* dropdown group (details/summary) */
.menu-group {
  margin: 10px 0;
}
.menu-group details {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
}
.menu-group summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  user-select: none;
}
.menu-group summary::-webkit-details-marker {
  display: none;
}
/* chevron (Material Icons via pseudo) */
.menu-group summary::after {
  content: "expand_more";
  font-family: "Material Symbols Outlined";
  font-size: 22px;
  line-height: 1;
  transition: transform .2s ease;
}
.menu-group details[open] summary::after {
  transform: rotate(180deg);
}
.menu-sub {
  display: grid;
  padding: 8px;
  background: rgba(0, 0, 0, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.menu-sub a {
  font-weight: 600;
  font-size: 16px;
  padding: 10px 10px;
  border-radius: 6px;
}
.menu-sub a:hover {
  background: rgba(255, 255, 255, 0.14);
}
/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  nav, .nav-overlay {
    transition: none !important;
  }
}
/* ===================== SUB NAV ===================== */
.sub-nav {
  width: 100%;
  border-bottom: 1px solid var(--rule);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1;
  /*  padding: 0 var(--space-outer);		*/
}
.sub-nav ul {
  max-width: 500px;
  padding: 0;
  margin: 0 auto;
  padding: 0 var(--space-outer);
  display: flex;
  justify-content: space-between;
  list-style: none;
}
.sub-nav-items a {
  display: inline-block;
  padding: 1rem 0;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  position: relative;
  font-size: 1rem;
}
.sub-nav-items a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  background: var(--color-brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}
.sub-nav a:hover::after, .sub-nav a.active::after {
  transform: scaleX(1);
}
/* ===================== HOME ANIMATION ===================== */
h1.hero-title {
  font-weight: 500;
  font-size: 4rem;
  text-align: center;
  white-space: nowrap;
}
.hero-title-word {
  display: inline-block;
}
.cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  /*  background: var(--color-brand);*/
  background: var(--color-text-dark);
  margin-left: 5px;
  vertical-align: bottom;
  animation: blink 0.7s steps(1) infinite;
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}
@media (max-width: 650px) {
  h1.hero-title {
    font-size: 3rem;
  }
  .hero-title-word {
    display: block;
  }
}
.intro-hero-tag {
  max-width: 600px;
  margin: 0 auto 3rem auto;
}
/* top line offset left */
.top-line {
  /*  margin-right: 20%;*/
}
/* bottom line offset right */
.word-mask {
  overflow: hidden;
  height: 1.2em;
  /*	margin-left: 20%x;*/
}
/* animation */
.word {
  display: inline-block;
  animation: slideIn 0.8s ease forwards;
}
@keyframes slideIn {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* ===================== PILLAR PAGE ===================== */
.pillar-wrap {
  margin: 0 0 3rem 0;
}
.pillar-buttons {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  background: #fff;
  color: var(--color-text);
  transition: all 250ms;
  border: solid 1px var(--color-border);
}
.pillar-buttons .material-symbols-outlined {
  transition: transform 0.3s ease;
}
.pillar-buttons:hover {
  background: var(--color-bg-darker);
  color: var(--color-text-dark);
  transition: all 250ms;
}
.pillar-buttons:active {}
.pillar-buttons .material-symbols-outlined {
  transition: transform 0.3s ease;
}
.pillar-buttons:hover .material-symbols-outlined {
  transform: translateX(6px);
}
/* ===================== PILL NAV ===================== */
.pill-nav {
  background: #fff;
  border-top: 1px solid var(--color-border);
  padding: 1rem var(--space-outer);
}
.pill-nav-inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.pill-list {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.pill-list a {
  padding: .45rem .8rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: #fff;
  /*  font-weight: 600;*/
  font-size: .8rem;
  transition: background .15s, border-color .15s, color .15s;
  text-decoration: none;
  color: var(--color-text);
}
.pill-list a:hover {
  border-color: var(--color-brand);
  box-shadow: 0 3px 8px rgba(0, 0, 0, .08);
  color: var(--color-brand);
}
.pill-list a.active {
  background: var(--color-brand-tint);
  border-color: var(--color-brand);
  color: var(--color-brand);
}
.pill-custom {
  display: none;
  position: relative;
  width: 100%;
  z-index: 100;
}
.pill-btn {
  width: 100%;
  padding: .75rem 1rem;
  /*  font-weight: 600;*/
  border: 1px solid var(--color-border);
  border-radius: 10px;
  /*  background: linear-gradient(180deg, #fff, var(--color-brand-tint));*/
  text-align: left;
  background: #fff;
  color: inherit;
  transition: all .2s ease;
  font-size: .9rem;
  cursor: pointer;
  /*  box-shadow: 0 2px 4px rgba(0, 0, 0, .05);*/
  position: relative;
}
.pill-btn:hover {
  border-color: var(--color-brand);
  box-shadow: 0 3px 8px rgba(0, 0, 0, .08);
}
.pill-btn[aria-expanded="true"] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-color: var(--color-brand);
  /*    background: var(--color-brand-tint);*/
}
/* Arrow icon */
.pill-btn::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  width: .5rem;
  height: .5rem;
  border-right: 2px solid var(--color-text-dark);
  border-bottom: 2px solid var(--color-text-dark);
  transform: translateY(-50%) rotate(45deg);
  transition: transform .2s ease, border-color .2s ease;
}
.pill-btn:hover::after {
  border-color: var(--color-brand);
}
.pill-btn[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(-135deg);
  border-color: var(--color-brand);
}
.pill-popover {
  position: fixed;
  border: 1px solid var(--color-brand);
  border-top: none;
  border-radius: 0 0 10px 10px;
  background: #fff;
  overflow: hidden;
  max-height: 45vh;
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
  z-index: 1000;
  -webkit-overflow-scrolling: touch;
  animation: fadeIn .18s ease forwards;
}
.pill-popover[hidden] {
  display: none;
}
.pill-popover div {
  padding: .7rem 1rem;
  cursor: pointer;
  border-top: 1px solid #d9dde3;
  font-size: .9rem;
  transition: background .15s ease, color .15s ease;
}
.pill-popover div:first-child {
  /*  border-top: none;*/
}
.pill-popover div:hover {
  color: var(--color-brand);
}
.pill-popover div[aria-selected="true"] {
  background: var(--color-brand-tint);
  color: var(--color-brand);
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media(max-width:650px) {
  .bio-block {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 2rem;
  }
  .pill-list {
    display: none;
  }
  .pill-custom {
    display: block;
  }
}
.pillar-card {
  scroll-margin-top: 140px;
  margin: 3rem 0;
}
/* ===================== FOOTER ===================== */
footer {
  text-align: center;
  padding: 2rem 1rem;
  border-top: 1px solid var(--color-border);
}
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  color: var(--color-text);
}
.footer-links a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
}
.footer-links a:hover {
  color: var(--color-brand-hover);
  text-decoration: underline;
}
.social-icons {
  margin: 2rem 0;
}
.social-icons a {
  margin: 0 .75rem;
  font-size: 1.4rem;
  color: #fff;
  transition: .2s;
  color: var(--color-text);
}
.social-icons a:hover {
  color: var(--color-brand-hover);
  transform: scale(1.2);
}
footer p {
  font-size: .8rem;
  opacity: .7;
  margin-top: 1rem;
}
/* ===================== CONTACT FORM ===================== */
.contact-form {
  max-width: 100%;
  margin: 3rem auto;
  padding: 2rem;
  background: var(--color-bg-light);
  border: 1px solid #ddd;
  border-radius: .5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  color: #333;
}
.contact-form input, .contact-form textarea {
  margin-top: 0.5rem;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: .25rem;
  font: inherit;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: #444;
  box-shadow: 0 0 0 2px #e0e0e0;
  outline: none;
}
.contact-form button {
  align-self: flex-start;
  background: #222;
  color: #fff;
  border: none;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: .25rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form button:hover {
  background: #444;
}
/* ===================== MOBILE ===================== */
@media screen and (max-width: 900px) {
  .home-columns {
    grid-template-columns: auto;
  }
}
@media screen and (max-width: 650px) {
  .card-lg {
    padding: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .home-styles h1 {
    margin-bottom: 2rem;
  }
  h1 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  p {
    font-size: 1rem;
  }
  li {
    font-size: 1rem;
  }
  .intro-body {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
  .sub-nav ul {
    max-width: 420px;
  }
  .btn_large {
    font-size: 1rem;
  }
  .home-section {
    margin-bottom: 4rem;
    margin-top: 1rem;
  }
  .card-lg {
    padding: 1rem;
  }
  .container-contrast {
    padding: 1rem;
  }
  .sub-nav-items a {
    font-size: 1rem;
  }
}
@media screen and (max-width: 400px) {}
/* ===================== THE END ===================== */