@font-face {
  font-family: Nunito;
  src: url('fonts/nunito-latin.woff2?v=6fcb6b4043e7') format('woff2');
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
}
:root {
  color-scheme: light;
  --paper: #fff8e9;
  --ink: #24334f;
  --muted: #3c5069;
  --line: #b3c4c5;
  --accent: #bb2445;
  --highlight: #ffe052;
  font-family: Nunito, Arial, sans-serif;
  font-synthesis: none;
  color: var(--ink);
  background: var(--paper);
}
* { box-sizing: border-box; }
body { margin: 0; overflow-x: clip; }
a { color: inherit; -webkit-tap-highlight-color: transparent; }
a:focus-visible { outline: 3px solid var(--ink); outline-offset: 6px; }
::selection { background: var(--highlight); color: var(--ink); }
[hidden] { display: none !important; }
.page {
  position: relative;
  isolation: isolate;
  max-width: 1600px;
  min-height: 100svh;
  margin: auto;
  padding: 28px 6vw 0;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  grid-template-rows: auto 1fr auto;
  column-gap: 50px;
}
.page-scenery { position: absolute; z-index: -1; pointer-events: none; top: 0; left: 0; width: 100%; height: auto; overflow: visible; }
.masthead {
  grid-area: 1 / 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
  padding: 5px 0 22px;
  border-bottom: 1px solid var(--line);
}
.wordmark {
  color: var(--accent);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.1;
  text-decoration: none;
}
main { display: contents; }
.identity { grid-area: 1 / 1; align-self: start; justify-self: start; margin: 0; }
.logo-home { display: block; position: relative; isolation: isolate; width: 190px; max-width: 100%; }
.logo-home img, .cat-face { display: block; width: 100%; height: auto; }
.cat-face { overflow: hidden; }
.cat-tail-cutout { fill: url(#cat-tail-colors); }
.tail-entry-color { stop-color: #a5e0ef; }
.cat-pupil { transform: translateX(-21px); transform-box: fill-box; transform-origin: center; }
.looking-right .cat-pupil { transform: translate(64px, 18px); }
.cat-eyes-closed, .is-blinking .cat-eyes-open { display: none; }
.is-blinking .cat-eyes-closed { display: block; }
.content { grid-area: 2 / 2; min-width: 0; padding: 45px 0 65px; }
nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 24px; }
nav a { padding: 6px 0; font-size: 1rem; font-weight: 700; line-height: 1.5; text-decoration: none; }
nav a[aria-current], nav a:hover { color: var(--accent); text-decoration: underline; text-underline-offset: 7px; }
nav a[aria-current] { text-decoration-thickness: 2px; }
.panel { max-width: 740px; animation: appear .35s ease both; }
h1 { font-size: clamp(2rem, 4.2vw, 3.25rem); line-height: 1.15; letter-spacing: -.035em; font-weight: 800; margin: 0 0 1.5rem; outline: none; }
.highlight { position: relative; isolation: isolate; white-space: nowrap; }
.highlight::before { content: ''; position: absolute; z-index: -1; background: var(--highlight); left: -.025em; right: -.08em; bottom: .015em; height: .3em; transform: rotate(-2deg); }
.description { max-width: 580px; font-size: 1.125rem; line-height: 1.7; color: var(--muted); margin: 0 0 1rem; }
.explore-link { display: inline-flex; align-items: center; color: var(--accent); padding: 6px 0; margin-top: 24px; gap: 10px; font-size: 1rem; font-weight: 800; line-height: 1.5; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.explore-link:hover { text-decoration-thickness: 2px; }
.explore-link span { font-size: 1.125rem; transition: transform .2s; }
.explore-link:hover span { transform: translate(3px, -3px); }
.project-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; margin-top: 38px; }
.project-art { aspect-ratio: 32 / 19; border-radius: 18px; overflow: hidden; }
.project-art svg { display: block; width: 100%; height: 100%; }
.football-art { background: #c6edcd; }
.learning-art { background: #f7c7b7; }
.project-preview h2 { font-size: 1.25rem; line-height: 1.3; font-weight: 800; letter-spacing: -.025em; margin: 18px 0 9px; }
.project-preview h2 a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.project-preview h2 a:hover { text-decoration-thickness: 2px; }
.project-preview h2 span { display: inline-block; margin-left: 3px; }
.project-preview p { margin: 0; font-size: 1rem; line-height: 1.6; color: var(--muted); }
.project-preview p + p { margin-top: 10px; }
footer { grid-area: 3 / 1 / 4 / -1; border-top: 1px solid var(--line); padding: 24px 0; color: var(--muted); font-size: .875rem; line-height: 1.5; }
@keyframes appear { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@media (min-width: 1001px) {
  .page { max-width: 1120px; padding-inline: 48px; grid-template-columns: 250px minmax(0, 1fr); column-gap: 36px; }
  .logo-home { width: 250px; }
  .identity { grid-row: 1 / 3; }
}
@media (min-width: 601px) and (max-width: 1000px) {
  .tail-entry-color { stop-color: color-mix(in srgb, #a5e0ef 75%, var(--paper)); }
  .page-scenery { width: 1120px; left: -30px; opacity: .75; }
  .page { grid-template-columns: 200px minmax(0, 1fr); column-gap: 28px; }
  .logo-home { width: 200px; }
  .masthead { gap: 14px; }
  nav { flex-direction: column; align-items: flex-end; gap: 4px; }
  nav a { padding: 7px 0; }
  .content { grid-column: 1 / -1; padding-top: 36px; }
}
@media (max-width: 600px) {
  .tail-entry-color { stop-color: color-mix(in srgb, #a5e0ef 55%, var(--paper)); }
  .page-scenery { width: 760px; left: -80px; opacity: .55; }
  .project-grid { grid-template-columns: 1fr; gap: 30px; margin-top: 30px; }
  .project-art { max-height: 220px; }
  .page { grid-template-columns: clamp(100px, 32vw, 160px) minmax(0, 1fr); column-gap: 18px; padding-top: 24px; }
  .logo-home { width: 100%; }
  .masthead { padding: 0 0 15px; border: 0; gap: 12px; }
  .wordmark { font-size: clamp(1.75rem, 7.5vw, 2.25rem); }
  .content { grid-column: 1 / -1; padding: 30px 0 48px; }
  nav { flex-direction: column; align-items: flex-end; gap: 4px; }
  nav a { padding: 7px 0; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .cat-pupil { transform: translateX(-21px); }
}
