/* Code Meets Canvas — Eric Soltys */

:root {
  /* Topographic palette — dark mode default */
  --bg-dark: #151a1f;        /* deep slate */
  --bg-medium: #1e252c;
  --surface: #2a333c;
  --surface-hover: #3a4550;
  --text-primary: #e8ebe4;   /* mountain fog white */
  --text-secondary: #a8b5b0;
  --text-dim: #8c9e98;       /* lightened for WCAG AA contrast on bg-medium */
  --accent: #7eb8c9;         /* ridge blue */
  --accent-dim: #5a9aab;
  --accent-stone: #c4a882;   /* warm stone — BC river valley */

  /* Platform colors */
  --spotify: #1db954;
  --youtube: #ff0000;
  --apple: #fc3c44;
  --linkedin: #0077b5;
  --github: #6e5494;
  --substack: #ff6719;
  --instagram: #e4405f;
  --threads: #000000;
  --bluesky: #1185fe;

  /* Typography Scale (1.25 Major Third) */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --text-2xl: 1.875rem;
  --text-3xl: 2.25rem;
  --text-display: clamp(2.5rem, 8vw, 4rem);
  --text-h2: clamp(1.5rem, 5vw, 2.25rem);

  /* Grid & spacing */
  --grid-gap: 1rem;
  --border-width: 1px;
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --radius-sig: 10px;        /* signature asymmetric corner radius */

  /* Animation Easings */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
}

/* Scroll Reveal Base */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Refined Hover States */
.social-link, .pro-link, .stream-link, .location-tag, .other-album-item, .other-project-item {
  transition: all 0.2s var(--ease-out-expo);
}

.social-link:hover,
.pro-link:hover,
.stream-link:hover {
  transform: scale(1.03);
  box-shadow: 0 5px 15px -5px currentColor;
}

.social-threads:hover { color: var(--text-primary); border-color: var(--text-primary); }
.social-bluesky:hover { color: var(--bluesky); border-color: var(--bluesky); }
.social-instagram:hover { color: var(--instagram); border-color: var(--instagram); }

.pro-linkedin:hover { color: var(--linkedin); border-color: var(--linkedin); }
.pro-github:hover { color: var(--github); border-color: var(--github); }
.pro-substack:hover { color: var(--substack); border-color: var(--substack); }

/* Light mode — mountain fog palette */
@media (prefers-color-scheme: light) {
  :root {
    --bg-dark: #eef0eb;        /* fog, warm gray-green */
    --bg-medium: #e1e5dc;
    --surface: #cdd3c8;
    --surface-hover: #bcc3b6;
    --text-primary: #151a1f;
    --text-secondary: #3a4a44;
    --text-dim: #546862;       /* darkened for WCAG AA contrast on bg-medium */
    --accent: #3d7a8a;         /* darker ridge blue for light bg contrast */
    --accent-dim: #2d6070;
    --accent-stone: #9a7a5a;   /* darker stone for light bg */

    /* Platform colors - adjusted for light background contrast */
    --threads: #1a1a1a;
  }
}

/* Enable automatic color scheme for browser UI elements */
:root {
  color-scheme: light dark;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Literata', Georgia, serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: var(--text-base);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Visually hidden but announced by screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Visible keyboard-focus indicator (mouse/touch clicks don't trigger it) */
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--radius-sig);
}

/* Mono reserved for metadata, handles, labels, code contexts */
.name-secondary,
.location-tag,
.social-label,
.stream-label,
.pro-label,
.status-badge,
.other-album-year,
.featured-album-year,
.other-project-language,
.featured-project-year,
.radio-distributor,
.link-desc {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
}

/* ===== BACKGROUND CANVAS ===== */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  #bg-canvas { display: none; }
  body { background: var(--bg-dark); }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: grid;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

/* ===== HEADER GRID ===== */
.header-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--grid-gap);
  align-items: start;
  border: var(--border-width) solid var(--surface);
  padding: 2rem;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
  animation: slideInDown 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  border-top-right-radius: var(--border-radius-md);
  border-bottom-left-radius: var(--border-radius-md);
}

/* ===== TOPO CONTOUR LINES ===== */
.topo-lines {
  position: absolute;
  top: 0;
  right: -10%;
  width: 80%;
  height: 150%;
  opacity: 0.10;
  pointer-events: none;
}

.topo-lines path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1px;
  vector-effect: non-scaling-stroke;
}

@media (prefers-color-scheme: light) {
  .topo-lines { opacity: 0.18; }
}

.header-grid::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: scanline 3s ease-in-out infinite;
}

@keyframes scanline {
  0%, 100% { opacity: 0; transform: scaleX(0.5); }
  50% { opacity: 1; transform: scaleX(1); }
}

.name-block {
  grid-column: 1;
  grid-row: 1;
}

.name-primary {
  font-family: "DM Serif Text", serif;
  font-size: var(--text-display);
  font-weight: 600;
  line-height: 0.9;
  margin-bottom: 0.5rem;
  animation: fadeIn 1s ease-out 0.2s both;
}

.name-secondary {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  font-weight: 400;
  letter-spacing: 0.05em;
  animation: fadeIn 1s ease-out 0.4s both;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}



.avatar-block {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
}

.avatar-container {
  width: 140px;
  height: 140px;
  border: var(--border-width) solid var(--surface);
  position: relative;
  overflow: hidden;
  animation: fadeIn 1s ease-out 0.6s both;
  border-top-right-radius: 12px;
  border-bottom-left-radius: 12px;
}

.avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.4s ease;
}

.avatar-container:hover .avatar-image {
  filter: grayscale(0%);
}

.bio-block {
  grid-column: 1;
  grid-row: 2;
  animation: fadeIn 1s ease-out 0.8s both;
}

.bio-text {
  font-size: var(--text-base);
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  max-width: 45ch;
  line-height: 1.7;
}

.location-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.location-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  padding: 0.3rem 0.7rem;
  border: var(--border-width) solid var(--surface);
  background: var(--bg-medium);
  text-decoration: none;
  cursor: pointer;
  border-top-right-radius: var(--border-radius-sm);
  border-bottom-left-radius: var(--border-radius-sm);
}


.location-tag:hover {
  background: var(--surface);
  border-color: var(--accent);
  color: var(--text-secondary);
}

.location-tag i {
  font-size: 0.9rem;
}

/* ===== SOCIAL BAR ===== */
.social-bar {
  animation: slideInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.social-link {
  display: flex;
  flex: 1 1 auto;
  min-width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 0.75rem;
  height: 44px;
  border: var(--border-width) solid var(--surface);
  background: var(--bg-dark);
  color: var(--text-primary);
  text-decoration: none;
  position: relative;
  white-space: nowrap;
  border-top-right-radius: var(--border-radius-sm);
  border-bottom-left-radius: var(--border-radius-sm);
}

.social-link i {
  font-size: 1.25rem;
  z-index: 1;
  flex-shrink: 0;
}

.social-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 1;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: currentColor;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-link:hover::before {
  opacity: 0.1;
}

/* ===== SECTION LABELS ===== */
.section-label {
  font-family: "DM Serif Text", serif;
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.label-text {
  letter-spacing: 0.05em;
}

.status-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  padding: 0.2rem 0.6rem;
  border: var(--border-width) solid var(--accent);
  letter-spacing: 0.08em;
  border-top-right-radius: var(--border-radius-sm);
  border-bottom-left-radius: var(--border-radius-sm);
}

/* ===== PROFESSIONAL SECTION ===== */
.professional-section {
  animation: slideInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.professional-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 2rem;
  max-width: 80ch;
  font-size: var(--text-base);
  line-height: 1.7;
}

/* Professional Links Bar */
.professional-bar {
  margin-bottom: 2.5rem;
}

.pro-link {
  display: flex;
  flex: 1 1 auto;
  min-width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 0.75rem;
  height: 44px;
  border: var(--border-width) solid var(--surface);
  background: var(--bg-dark);
  color: var(--text-primary);
  text-decoration: none;
  position: relative;
  white-space: nowrap;
  border-top-right-radius: var(--border-radius-sm);
  border-bottom-left-radius: var(--border-radius-sm);
}

.pro-link i {
  font-size: 1.25rem;
  z-index: 1;
  flex-shrink: 0;
}

.pro-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 1;
}

.pro-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: currentColor;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pro-link:hover::before {
  opacity: 0.1;
}

/* ===== MUSIC SECTION ===== */
.music-section {
  animation: slideInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.social-bar,
.professional-bar,
.streaming-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  border: var(--border-width) solid var(--surface);
  background: var(--bg-medium);
  border-top-right-radius: var(--border-radius-md);
  border-bottom-left-radius: var(--border-radius-md);
}

.professional-bar,
.streaming-bar {
  margin-bottom: 2rem;
}

.radio-distributor {
  flex-basis: 100%;
}

.stream-link {
  display: flex;
  flex: 1 1 auto; /* Allow items to grow and shrink */
  min-width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 0.75rem; /* Slightly reduced padding */
  height: 44px;
  border: var(--border-width) solid var(--surface);
  background: var(--bg-dark);
  color: var(--text-primary);
  text-decoration: none;
  position: relative;
  white-space: nowrap;
  border-top-right-radius: var(--border-radius-sm);
  border-bottom-left-radius: var(--border-radius-sm);
}

.stream-link i {
  font-size: 1.25rem;
  z-index: 1;
  flex-shrink: 0;
}

.stream-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 1;
}

.stream-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: currentColor;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stream-link:hover::before {
  opacity: 0.1;
}

.stream-youtube:hover { color: var(--youtube); border-color: var(--youtube); }
.stream-spotify:hover { color: var(--spotify); border-color: var(--spotify); }
.stream-apple:hover { color: var(--apple); border-color: var(--apple); }
.stream-bandcamp:hover { color: var(--accent); border-color: var(--accent); }

/* Albums grid with staggered animation */
/* ===== ALBUMS SECTION ===== */

/* Featured Section (Album & Project) */
.featured-album,
.featured-project {
  animation: floatIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
  margin-bottom: 2rem;
}

.featured-album-container,
.featured-project-container {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.featured-album-artwork-link,
.featured-project-artwork-link {
  text-decoration: none;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-album-artwork,
.featured-project-artwork {
  position: relative;
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-top-right-radius: var(--border-radius-md);
  border-bottom-left-radius: var(--border-radius-md);
  border: var(--border-width) solid var(--surface);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-album-artwork img,
.featured-project-artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
  filter: grayscale(30%);
}

.featured-project-artwork img {
  padding: 12%;
  background: var(--bg-dark);
}

.featured-project-lang-badge {
  position: absolute;
  bottom: -0.5rem;
  right: -0.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  border: var(--border-width) solid var(--surface);
  border-radius: 50%;
  font-size: 1.25rem;
}

.featured-album-artwork-link:hover .featured-album-artwork img,
.featured-project-artwork-link:hover .featured-project-artwork img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.featured-album-artwork-link:hover .featured-album-artwork,
.featured-project-artwork-link:hover .featured-project-artwork {
  border-color: var(--accent);
  box-shadow: 0 15px 35px -15px rgba(0,0,0,0.6), 0 0 20px -5px var(--accent);
}

.featured-album-info,
.featured-project-info {
  border: var(--border-width) solid var(--surface);
  background: var(--bg-medium);
  padding: 2rem;
  border-top-right-radius: var(--border-radius-md);
  border-bottom-left-radius: var(--border-radius-md);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
}

.featured-album-header,
.featured-project-header {
  display: flex;
  gap: 1rem;
  align-items: baseline;
}

.featured-album-title,
.featured-project-title {
  font-family: "DM Serif Text", serif;
  font-size: var(--text-h2);
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
}

.featured-album-title a,
.featured-project-title a,
.featured-album-title a:visited,
.featured-project-title a:visited {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.featured-album-title a:hover,
.featured-project-title a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.featured-album-year,
.featured-project-year {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin: 0;
  white-space: nowrap;
}

.featured-album-quote,
.featured-project-quote {
  font-size: var(--text-base);
  font-style: italic;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
  border-left: 2px solid var(--accent-dim);
  padding-left: 1rem;
}

.featured-album-cite,
.featured-project-cite {
  font-size: 0.8rem;
  color: var(--text-dim);
  display: block;
}

.featured-album-cite a,
.featured-project-cite a {
  color: var(--accent-stone);
  text-decoration: none;
  transition: color 0.3s ease;
}

.featured-album-cite a:hover,
.featured-project-cite a:hover {
  color: var(--accent-dim);
  text-decoration: underline;
}

.radio-distributor {
  flex-basis: 100%;
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: center;
  padding-top: 0.5rem;
  border-top: var(--border-width) solid var(--surface);
}

.radio-distributor a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.radio-distributor a:hover {
  color: var(--accent-dim);
  text-decoration: underline;
}

/* Other Albums */
.other-albums {
  animation: slideInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both;
}

.other-albums-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--border-width);
  border: var(--border-width) solid var(--surface);
  border-top-right-radius: var(--border-radius-md);
  border-bottom-left-radius: var(--border-radius-md);
  overflow: hidden;
}

.other-album-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: var(--bg-medium);
  text-decoration: none;
  color: var(--text-primary);
  font-size: 0.875rem;
}

.other-album-item:hover {
  background: var(--surface);
}

.other-album-art {
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: var(--border-radius-sm);
  flex-shrink: 0;
  position: relative;
}

.other-album-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
  filter: grayscale(30%);
}

.other-album-item:hover .other-album-art img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.other-album-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.other-album-title {
  display: block;
  font-weight: 700;
  margin: 0;
  transition: color 0.3s ease;
}

.other-album-item:hover .other-album-title {
  color: var(--accent);
  text-decoration: underline;
}

.other-album-year {
  display: block;
  color: var(--text-secondary);
  font-size: 0.75rem;
  margin: 0;
}

/* Other Projects */
.other-projects {
  animation: slideInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both;
  margin-top: 1rem;
}

.other-projects-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--border-width);
  border: var(--border-width) solid var(--surface);
  border-top-right-radius: var(--border-radius-md);
  border-bottom-left-radius: var(--border-radius-md);
  overflow: hidden;
}

.other-project-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: var(--bg-medium);
  text-decoration: none;
  color: var(--text-primary);
  font-size: 0.875rem;
}

.other-project-item:hover {
  background: var(--surface);
}

.other-project-header {
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: var(--border-radius-sm);
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--surface) 100%);
  border: var(--border-width) solid var(--surface);
}

.project-lang-icon {
  font-size: 2.25rem;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.other-project-item:hover .project-lang-icon {
  transform: scale(1.08);
}

.other-project-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.other-project-title {
  display: block;
  font-weight: 700;
  margin: 0;
  transition: color 0.3s ease;
}

.other-project-item:hover .other-project-title {
  color: var(--accent);
  text-decoration: underline;
}

.other-project-language {
  display: block;
  color: var(--text-secondary);
  font-size: 0.75rem;
  margin: 0;
}

.other-project-desc {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.4;
  margin-top: 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Language Icon Colors */
.other-project-item[data-lang="Python"] .project-lang-icon { color: #3776AB; }
.other-project-item[data-lang="TypeScript"] .project-lang-icon { color: #3178C6; }
.other-project-item[data-lang="JavaScript"] .project-lang-icon { color: #F7DF1E; }
.other-project-item[data-lang="PowerShell"] .project-lang-icon { color: #5391FE; }
.featured-project-artwork-link[data-lang="Rust"] .project-lang-icon { color: #CE422B; }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .container {
    padding: 2rem 1rem 4rem;
    gap: 3rem;
  }

  .header-grid {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .name-primary {
    font-size: 2rem;
  }

  .avatar-block {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
    margin: 1rem 0;
  }

  .avatar-container {
    width: 100px;
    height: 100px;
  }

  .bio-block {
    grid-row: 3;
  }

  .featured-album-container,
  .featured-project-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .featured-album-artwork-link,
  .featured-project-artwork-link {
    align-self: center;
  }

  .featured-album-title,
  .featured-project-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 1.5rem 0.75rem 4rem;
  }

  .header-grid {
    padding: 1rem;
  }

  .name-primary {
    font-size: 1.75rem;
  }

  .social-bar,
  .streaming-bar,
  .professional-bar {
    flex-direction: column;
    padding: 0.75rem;
  }

  .social-link,
  .stream-link,
  .pro-link {
    width: 100%;
    height: 44px;
  }

  .social-link i,
  .stream-link i,
  .pro-link i {
    font-size: 1.1rem;
  }

  .other-albums-list,
  .other-projects-list {
    grid-template-columns: 1fr;
  }
}
