/* The shared homepage. /links keeps its own existing stylesheet. */
@font-face {
  font-family: 'Outfit';
  src: url('/assets/fonts/outfit-v15-latin.woff2') format('woff2');
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  src: url('/assets/fonts/outfit-v15-latin-ext.woff2') format('woff2');
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Silkscreen';
  src: url('/assets/fonts/silkscreen-v6-latin.woff2') format('woff2');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Silkscreen';
  src: url('/assets/fonts/silkscreen-v6-latin-ext.woff2') format('woff2');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('/assets/fonts/jetbrains-mono-v24-latin.woff2') format('woff2');
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('/assets/fonts/jetbrains-mono-v24-latin-ext.woff2') format('woff2');
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
:root {
  color-scheme: dark;
  --background: #0d1117;
  --surface: #151c23;
  --text: #f0f0e9;
  --muted: #b0b7bf;
  --green: #85ff59;
  --line: #343e48;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-padding-top: 1.5rem; }
body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font: 1.125rem/1.6 'Outfit', sans-serif;
  -webkit-tap-highlight-color: #85ff5933;
}
h1, h2, h3, p { margin: 0; }
h1, h2, h3 { text-wrap: balance; }
a { color: inherit; text-decoration: none; touch-action: manipulation; }
img { display: block; max-width: 100%; height: auto; }
::selection { background: var(--green); color: var(--background); }
:focus-visible { outline: 3px solid var(--green); outline-offset: 6px; }
/* Main is a skip-link destination, not a further keyboard stop. */
main:focus { outline: none; }
[id] { scroll-margin-top: 1.5rem; }
.page { width: min(100% - 5rem, 1120px); margin-inline: auto; }
.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: 12px 20px;
  background: var(--green);
  color: var(--background);
  z-index: 10;
  text-decoration: underline;
}
.skip-link:focus { transform: none; outline-color: var(--text); }
.site-header { display: flex; align-items: center; gap: 2.5rem; padding-block: 24px; border-bottom: 1px solid var(--line); }
.wordmark { display: inline-flex; align-items: center; gap: 12px; min-height: 44px; color: var(--green); font: 400 1.3rem/1.2 'Silkscreen', monospace; }
.wordmark img { flex: 0 0 48px; }
.main-nav { display: flex; gap: 24px; margin-left: auto; }
.main-nav a, .languages a { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; }
.main-nav a { font-size: 1rem; }
.main-nav a:hover, .wordmark:hover { text-decoration: underline; text-underline-offset: 5px; }
.languages { display: flex; gap: 2px; }
.languages a { min-width: 44px; padding-inline: 5px; color: var(--muted); font: 400 .75rem/1.4 'JetBrains Mono', monospace; }
.languages a[aria-current='page'] { color: var(--green); text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 2px; }
.languages a:hover { color: var(--text); text-decoration: underline; text-underline-offset: 6px; }
.intro { display: grid; grid-template-columns: 1.45fr 1fr; align-items: end; gap: 48px; padding-block: 64px 60px; }
.eyebrow { font: 400 .75rem/1.6 'JetBrains Mono', monospace; letter-spacing: .035em; text-transform: uppercase; color: var(--muted); }
.intro .eyebrow { margin-bottom: 20px; }
h1 { font: 400 clamp(2.5rem, 4.6vw, 3.9rem)/1.15 'Silkscreen', monospace; letter-spacing: -.045em; }
h1 span { color: var(--green); }
.intro-copy { padding-bottom: 4px; max-width: 390px; }
.intro-copy > p { font-size: 1.25rem; line-height: 1.6; color: var(--muted); }
.text-link { display: inline-flex; align-items: center; gap: 12px; min-height: 44px; color: var(--green); font-size: 1rem; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.text-link span { text-decoration: none; }
a.text-link:hover, a.project-link:hover .text-link { text-decoration-thickness: 2px; }
.intro-copy .text-link { margin-top: 16px; }
.section-heading { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 8px 24px; padding-block: 20px; border-top: 1px solid var(--line); }
.section-heading h2 { font: 400 .875rem/1.6 'JetBrains Mono', monospace; text-transform: uppercase; letter-spacing: .025em; }
.section-heading h2 span { color: var(--green); }
.section-heading > p { color: var(--muted); font-size: .9375rem; }
.project-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px 32px; }
.project { min-width: 0; border-bottom: 1px solid var(--line); }
.project-link { display: flex; flex-direction: column; height: 100%; }
.project-image { display: flex; align-items: center; justify-content: center; position: relative; height: 244px; overflow: hidden; background: var(--surface); border: 1px solid var(--line); }
a.project-link:hover .project-image { border-color: var(--green); }
.image-drop { gap: 40px; background: #111b16; }
.drop-mark { width: 155px; }
.drop-screen { width: 146px; align-self: flex-start; margin-top: 25px; border: 1px solid #465348; border-radius: 18px; }
.image-art { background: #281c25; }
.regina-art { width: 216px; }
.image-music { background: #1f1421; }
.noise-mark { width: 300px; max-width: 75%; }
.image-shop { background: #1b2023; }
.shop-photo { width: 100%; height: 100%; object-fit: cover; object-position: center 43%; }
.project-info { display: flex; flex-direction: column; flex: 1; padding-block: 22px 24px; }
.project-info h3 { font-size: 1.875rem; font-weight: 500; letter-spacing: -.025em; margin-block: 4px 8px; line-height: 1.2; }
.project-description { color: var(--muted); max-width: 47ch; font-size: 1.0625rem; line-height: 1.65; margin-bottom: 14px; }
.project-info .text-link { margin-top: auto; align-self: flex-start; }
.project-actions { display: flex; flex-wrap: wrap; gap: 4px 24px; margin-top: auto; }
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; padding-block: 64px; }
.about-intro h2 { font-size: 2.1rem; line-height: 1.2; font-weight: 500; letter-spacing: -.025em; margin-block: 14px 20px; max-width: 18ch; }
.about-intro > p:last-child { color: var(--muted); max-width: 43ch; }
.people { display: grid; gap: 28px; }
.person h3 { font-size: 1.375rem; font-weight: 500; margin-block: 5px 9px; }
.person h3 span { color: var(--muted); font-size: 1rem; }
.person > p:not(.eyebrow) { color: var(--muted); font-size: 1rem; max-width: 48ch; }
.person .text-link { margin-top: 4px; }
.site-footer { display: flex; align-items: center; justify-content: space-between; gap: 28px; border-top: 1px solid var(--line); padding-block: 28px 36px; }
.footer-signoff { display: flex; align-items: center; gap: 18px; }
.footer-signoff p { font-size: .875rem; }
.footer-signoff p span { color: var(--muted); }
/* No animated effects or smooth scrolling, including under reduced motion. */
@media (max-width: 850px) {
  .page { width: calc(100% - 3rem); }
  .site-header { flex-wrap: wrap; gap: 12px 20px; }
  .main-nav { order: 3; width: 100%; margin-left: 0; }
  .languages { margin-left: auto; }
  .intro { grid-template-columns: 1fr; gap: 24px; padding-block: 40px; }
  h1 { font-size: clamp(2.3rem, 7vw, 3.9rem); }
  .intro-copy { max-width: 580px; }
  .project-grid { gap: 28px 24px; }
  .project-image { height: 220px; }
  .image-drop { gap: 18px; }
  .drop-mark { width: 38%; }
  .drop-screen { width: 36%; }
  .about { gap: 32px; }
}
@media (max-width: 580px) {
  .page { width: calc(100% - 2.5rem); }
  .site-header { padding-block: 16px 12px; gap: 8px 16px; }
  .wordmark { font-size: 1.125rem; gap: 8px; }
  .wordmark img { width: 36px; flex-basis: 36px; }
  .main-nav { gap: 24px; width: auto; }
  .languages { order: 3; }
  h1 { font-size: clamp(2rem, 8vw, 2.875rem); }
  .intro-copy > p { font-size: 1.125rem; }
  .project-grid, .about { grid-template-columns: 1fr; }
  .project-image { height: 236px; }
  .image-drop { gap: 36px; }
  .drop-mark { width: 135px; }
  .drop-screen { width: 125px; }
  .about { padding-block: 40px; gap: 32px; }
  .site-footer { flex-wrap: wrap; gap: 12px; }
  .footer-signoff { align-items: flex-start; }
}
@media (max-width: 360px) {
  .main-nav { gap: 16px; }
  .languages { margin-left: 0; }
  .image-drop { gap: 20px; }
  .drop-mark { width: 110px; }
  .drop-screen { width: 110px; }
}
@media (forced-colors: active) {
  .project-image { border-color: CanvasText; }
  a.project-link:hover .project-image { border-color: LinkText; }
  :focus-visible { outline-color: Highlight; }
}
