

  :root {    
    --primaryColor: #1F6C9F;
    --headingColor: #1C1917;
    --backgroundColor: #F7F6F3;
    --accentColor: #6B6A67;
    --textColor: #3A3734;
    --logoColor: #1C1917;

    --primaryColorFilter: invert(33%) sepia(100%) saturate(436%) hue-rotate(160deg) brightness(90%) contrast(89%);
    --headingColorFilter: invert(7%) sepia(16%) saturate(305%) hue-rotate(341deg) brightness(93%) contrast(93%);
    --backgroundColorFilter: invert(97%) sepia(5%) saturate(425%) hue-rotate(6deg) brightness(106%) contrast(93%);
    --accentColorFilter: invert(44%) sepia(7%) saturate(62%) hue-rotate(7deg) brightness(90%) contrast(89%);
    --textColorFilter: invert(19%) sepia(12%) saturate(271%) hue-rotate(349deg) brightness(93%) contrast(89%);
    --logoColorFilter: invert(7%) sepia(16%) saturate(305%) hue-rotate(341deg) brightness(93%) contrast(93%);
    
    --whiteFilter: invert(99%) sepia(37%) saturate(0%) hue-rotate(260deg) brightness(115%) contrast(100%);
    --blackFilter: invert(0%) sepia(1%) saturate(3%) hue-rotate(326deg) brightness(96%) contrast(104%);

    /* OPACITY COLORS */

    --low-opacity-black: rgba(0, 0, 0, 0.25);
    --high-opacity-black: rgba(0, 0, 0, 0.75);

    --low-opacity-gray: rgba(255, 255, 255, 0.25);
    --high-opacity-gray: rgba(255, 255, 255, 0.75);

    --low-opacity-primaryColor: rgba(31, 108, 159, 0.25);
    --high-opacity-primaryColor: rgba(31, 108, 159, 0.75);

    --high-opacity-primaryColorFilter: invert(33%) sepia(100%) saturate(436%) hue-rotate(160deg) brightness(90%) contrast(89%) opacity(0.75);
    
    --low-opacity-headingColor: rgba(28, 25, 23, 0.25);
    --high-opacity-headingColor: rgba(28, 25, 23, 0.75);

    --low-opacity-backgroundColor: rgba(247, 246, 243, 0.25);
    --high-opacity-backgroundColor: rgba(247, 246, 243, 0.75);

    --low-opacity-accentColor: rgba(107, 106, 103, 0.25);
    --high-opacity-accentColor: rgba(107, 106, 103, 0.75);

    --low-opacity-textColor: rgba(58, 55, 52, 0.25);
    --high-opacity-textColor: rgba(58, 55, 52, 0.75);

    /* END OF OPACITY COLROS */

    /* BASIC COLORS */

    --light-gray: var(--low-opacity-backgroundColor);
    --basic-gray: var(--low-opacity-backgroundColor);
    --dark-gray: var(--high-opacity-textColor);
    --black: var(--textColor);
    --white: var(--backgroundColor);

    --whiteFilter: invert(99%) sepia(37%) saturate(0%) hue-rotate(260deg) brightness(115%) contrast(100%);
    --blackFilter: invert(0%) sepia(1%) saturate(3%) hue-rotate(326deg) brightness(96%) contrast(104%);

    /* END OF BASIC COLORS*/

    /* SHADOWS */

    --basic-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);

    /* END OF SHADOWS */

  }

  html {
    font-family: Geist, sans-serif;
    font-weight: 400;
  }

  footer {
    font-family: Geist, sans-serif;
    font-weight: 500;
  }

  h1, h2 {
    font-family: Newsreader, serif;
    font-weight: 600;
  }

  h3, h4, h5, h6 {
    font-family: Geist, serif;
    font-weight: 400;
  }

  code {
    font-family: JetBrains Mono, monospace;
    font-weight: 400;
  }

  .logo-text {
    font-family: JetBrains Mono;
    font-weight: 700;
  }
  
html {
  height: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  width: 100%;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background-color: var(--backgroundColor);
  color: var(--textColor);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
  }
  .site-main {
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
  }

.lede {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--textColor);
}

  
  /* Full-bleed sections + centered inner content */
  :root {
    --siteContentMaxWidth: min(100%, 1200px);
  }

  nav, section, header, footer {
    width: 100%;
    max-width: 100%;
  }

  nav > :where(div, ul, ol, article, aside, main, p),
  section > :where(div, ul, ol, article, aside, main, p),
  header > :where(div, ul, ol, article, aside, main, p),
  footer > :where(div, ul, ol, article, aside, main, p) {
    width: 100%;
    max-width: 1200px;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  





footer {
  color: var(--backgroundColor);
}
footer a {
  color: var(--backgroundColor);
  text-decoration: none;
  opacity: 0.72;
  transition: opacity 150ms ease;
}
footer a:hover {
  opacity: 1;
}
  footer {
    margin-top: auto;
  }

*, *::before, *::after {
  box-sizing: border-box;
}
:where(h1, h2, h3, h4, h5, h6) {
  letter-spacing: -0.02em;
  line-height: 1.15;
}
h1, h2 {
  letter-spacing: -0.03em;
}
section {
  padding: clamp(2rem, 4vw, 3rem) clamp(1.25rem, 5vw, 3rem);
}
header {
  padding-left: clamp(1.25rem, 5vw, 3rem);
  padding-right: clamp(1.25rem, 5vw, 3rem);
  animation: gcRise 600ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
a {
  transition: color 150ms ease, border-color 150ms ease, opacity 150ms ease;
}
nav a {
  text-decoration: none;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--primaryColor);
  outline-offset: 3px;
  border-radius: 2px;
}
::selection {
  background: var(--primaryColor);
  color: var(--backgroundColor);
}
footer .social-icons a .icon {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1) !important;
  opacity: 0.72;
  transition: opacity 150ms ease;
}
footer .social-icons a:hover .icon {
  filter: brightness(0) invert(1) !important;
  opacity: 1;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    repeating-linear-gradient(to right, rgba(28, 25, 23, 0.02) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(to bottom, rgba(28, 25, 23, 0.02) 0 1px, transparent 1px 96px);
}
@keyframes gcRise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
@media (max-width: 640px) {
  header h1,
  header h2,
  header p,
  header div,
  section h1,
  section h2,
  section h3,
  section p,
  section div,
  footer div {
    max-width: 100% !important;
    min-width: 0 !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
