@font-face {
  font-family: "Space Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/space-mono-regular.ttf") format("truetype");
}

@font-face {
  font-family: "Space Mono";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/space-mono-bold.ttf") format("truetype");
}

@font-face {
  font-family: "Space Mono";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/space-mono-italic.ttf") format("truetype");
}

:root {
  --bg: #0d0d0c;
  --fg: #e9e7e2;
  --fg-dim: #9c9a93;
  --fg-dimmer: #6b6a65;
  --border: #2c2b28;
  --beanfish: #e69fb1;
  --max-width: 640px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  cursor: crosshair;
}

body {
  font-family: "Space Mono", "Courier New", Courier, monospace;
  font-size: 15px;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--fg);
  text-decoration: none;
}

a:hover { text-decoration: underline;
cursor: crosshair;
color: var(--beanfish);
}

:focus-visible {
  outline: 2px solid var(--beanfish);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 8px;
  z-index: 1000;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--beanfish);
  padding: 10px 16px;
  text-decoration: none;
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 8px;
}

.site-header {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.site-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
}

.site-title {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--fg-dim);
}

.nav a { color: var(--fg-dim); }
.nav a:hover { color: var(--fg); text-decoration: none; }
.nav a.active {
  color: var(--fg);
  border-bottom: 1px solid var(--fg);
  padding-bottom: 2px;
}

.nav a:hover{
  cursor: crosshair;
  color: var(--beanfish);
}

.nav .sep { color: var(--fg-dimmer); }

.site-main {
  flex: 1;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 20px 60px;
}

.hamburger {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 100;
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: var(--bg);
  border: 1px solid var(--border);
  cursor: crosshair;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, border-color 0.15s ease;
}

.hamburger.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.hamburger:hover {
  border-color: var(--beanfish);
}

.hamburger span {
  display: block;
  width: 16px;
  height: 1px;
  background: var(--fg);
  transition: background 0.15s ease;
}

.hamburger:hover span {
  background: var(--beanfish);
}

.hamburger-nav {
  position: fixed;
  top: 60px;
  right: 16px;
  z-index: 99;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.04em;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.hamburger-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hamburger-nav a {
  color: var(--fg-dim);
}

.hamburger-nav a:hover {
  color: var(--beanfish);
  text-decoration: none;
}

.hamburger-nav a.active {
  color: var(--fg);
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 600px) {
  .hamburger-nav {
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 98;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 40px;
    border: none;
    background: rgba(13, 13, 12, 0.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transform: none;
    transition: opacity 0.2s ease;
  }

  .hamburger-nav a {
    font-size: 22px;
    letter-spacing: 0.05em;
  }

  .hamburger {
    z-index: 100;
  }
}

.intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0 48px;
}

.polaroid {
  background: #f2f0ea;
  padding: 14px 14px 42px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5);
  transform: rotate(-1.4deg) translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  width: 230px;
  margin: 0 0 30px;
  transition: transform 0.25s ease;
  overflow: hidden;
  will-change: transform;
}

.polaroid:hover {
  transform: rotate(0deg) translateZ(0);
}

.polaroid img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #1a1a18;
  transform: scale(1.03);
  filter: contrast(1.1);
}

.polaroid figcaption {
  text-align: center;
  font-size: 10px;
  color: #6b6858;
  margin-top: 10px;
  letter-spacing: 0.04em;
}

.page-intro {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 32px;
  margin: 8px 0 60px;
}

.page-intro-media {
  flex: 0 0 auto;
  margin: 0;
}

.page-intro-text {
  flex: 1;
  min-width: 0;
}

.page-intro-text p {
  margin: 0;
  font-size: 14px;
  color: var(--fg-dim);
}

@media (max-width: 600px) {
  .page-intro {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
}

.series-highlights {
  display: flex;
  flex-direction: column;
  gap: 44px;
  margin: 8px 0 48px;
}

.series-item {
  display: flex;
  align-items: center;
  gap: 32px;
}

.series-item:nth-child(even) {
  flex-direction: row-reverse;
}

.series-media {
  flex: 0 0 auto;
  margin: 0;
}

.series-media img {
  aspect-ratio: 4 / 3;
}

.series-item:nth-child(even) .series-media {
  transform: rotate(1.4deg) translateZ(0);
}

.series-item:nth-child(even) .series-media:hover {
  transform: rotate(0deg) translateZ(0);
}

.series-content {
  flex: 1;
  min-width: 0;
}

.series-content h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg);
  margin: 0 0 10px;
  font-weight: 400;
}

.series-content p {
  font-size: 13px;
  color: var(--fg-dim);
  margin: 0 0 16px;
}

@media (max-width: 600px) {
  .series-item,
  .series-item:nth-child(even) {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
}

.intro-text {
  max-width: 80%;
  color: var(--fg-dim);
  font-size: 14px;
}

.intro-text p { margin: 0 0 12px; }
.intro-text p:last-child { margin-bottom: 0; }

.greeting {
  color: var(--fg);
  font-weight: 700;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
}

.section-head.featured{
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 5px;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fg-dim);
  margin: 0;
  font-weight: 400;
}



.more-link {
  font-size: 12px;
  color: var(--fg-dim);
}

.featured {
  padding-bottom: 40px;
}

.featured .section-head {
  justify-content: center;
}

.featured-photo {
  display: block;
  text-align: center;
 
  background: #171615;
  overflow: hidden;
}

.featured-photo img {
  display: block;
  width: 100%;
  max-height: 50vh;
  object-fit: contain;
  margin: 0 auto;
  background: #171615;
}

.featured-photo.landscape img {
   max-height: 50vh;
}

.featured-desc {
  margin: 12px 0 0;
  font-size: 12.5px;
  color: var(--fg-dim);
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.grid-wide {
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.tile-wrap {
  position: relative;
}

.tile {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: block;
  border: 1px solid var(--border);
  background: #171615;
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(15%) contrast(1.03);
  transition: transform 0.4s ease, filter 0.4s ease;
}

html:not(.is-touch) .tile:hover img {
  transform: scale(1.06);
  filter: grayscale(0%) contrast(1.05);
}

.hover-preview {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
  z-index: 60;
}

.tile-wrap.is-open .hover-preview {
  opacity: 1;
  pointer-events: auto;
}

html:not(.is-touch) .tile-wrap:hover .hover-preview {
  opacity: 1;
  pointer-events: auto;
}

.preview-backdrop {
  display: none;
}

.polaroid-preview {
  position: relative;
  display: block;
  background: #f2f0ea;
  padding: 14px 14px 34px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  text-decoration: none;
  transform: scale(0.96);
  transition: transform 0.15s ease;
}

.tile-wrap.is-open .polaroid-preview {
  transform: scale(1);
}

html:not(.is-touch) .tile-wrap:hover .polaroid-preview {
  transform: scale(1);
}

.hover-preview.portrait .polaroid-preview {
  width: min(60vw, 340px);
}

.hover-preview.landscape .polaroid-preview {
  width: min(80vw, 520px);
}

.tile-wrap.is-open .hover-preview {
  position: fixed;
  inset: 0;
  transform: none;
}

.tile-wrap.is-open .preview-backdrop {
  display: block;
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.polaroid-preview img {
  display: block;
  width: 100%;
}

.preview-caption {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-align: center;
  font-size: 10px;
  color: #6b6858;
  margin-top: 10px;
  letter-spacing: 0.02em;
  max-height: 2.8em;
  line-height: 1.4;
}

.preview-glass-link {
  display: block;
  text-align: center;
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8a8775;
  margin-top: 8px;
  text-decoration: underline;
}

.preview-glass-link:hover {
  color: var(--beanfish);
}

.record-tile {
  aspect-ratio: auto;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.record-tile:hover {
  text-decoration: none;
}

.record-tile img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.tile.is-hidden,
.tile-wrap.is-hidden {
  display: none;
}

.load-more-sentinel {
  grid-column: 1 / -1;
  height: 1px;
}

.record-tile-fallback img {
  object-fit: contain;
  background: #f2f0ea;
  padding: 18%;
}

.toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px;
}

.btn {
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-dim);
  background: transparent;
  border: 1px solid var(--border);
  padding: 6px 12px;
  cursor: crosshair;
}

.btn:hover {
  color: var(--beanfish);
  border-color: var(--beanfish);
  text-decoration: none;
}

.record-caption {
  padding: 8px 2px 2px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 10.5px;
  line-height: 1.4;
}

.record-artist {
  color: var(--fg);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.record-title {
  color: var(--fg-dim);
  font-style: italic;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px auto 0;
  max-width: 420px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-dim);
}

.form-field input,
.form-field textarea {
  font-family: inherit;
  font-size: 14px;
  letter-spacing: normal;
  text-transform: none;
  color: var(--fg);
  background: transparent;
  border: 1px solid var(--border);
  padding: 10px 12px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--fg-dim);
}

.contact-form .btn {
  align-self: flex-end;
}

.contact-status {
  font-size: 11.5px;
  color: var(--fg-dim);
  min-height: 1.4em;
  margin: 4px 0 0;
}

.contact-status.ok {
  color: #8fae8f;
}

.contact-status.err {
  color: #b98080;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.glass-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  margin-bottom: 32px;
}

.glass-cta.end {
  display: flex;
  justify-content: center;
margin-top: 32px;
  margin-bottom: 0px;
}

.glass-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  color: var(--fg);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.glass-link:hover {
  background: #FFD60A;
  border-color: #FFD60A;
  color: #000;
  text-decoration: none;
}

.glass-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  background-color: var(--fg);
  -webkit-mask: url("../img/glass-logo.svg") no-repeat center / contain;
  mask: url("../img/glass-logo.svg") no-repeat center / contain;
  transition: background-color 0.15s ease;
}

.glass-link:hover .glass-icon {
  background-color: #000;
}

.empty-msg {
  color: var(--fg-dimmer);
  font-size: 13px;
  text-align: center;
  padding: 24px 0;
  border: 1px dashed var(--border);
}

.page h1 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--fg-dim);
  font-weight: 400;
  margin: 20px 0 6px;
}

.page-meta {
  font-size: 11px;
  color: var(--fg-dimmer);
  margin: 0 0 4px;
}

.page-meta-fun {
  font-size: 11px;
  color: var(--fg-dimmer);
  font-style: italic;
  margin: 0 0 24px;
}

.page-body {
  font-size: 14px;
  color: var(--fg-dim);
}

.page-body p { margin: 0 0 14px; }
.page-body a,
.intro-text a,
.page-intro-text a {
  position: relative;
  color: var(--beanfish);
  text-decoration: none;
}



.page-body a:hover,
.intro-text a:hover,
.page-intro-text a:hover {
  color: var(--fg);
}

.page-body em { color: var(--fg); }

.page-body strong {
  color: var(--fg);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.site-footer {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 20px 20px 40px;
  text-align: center;
  font-size: 10.5px;
  color: var(--fg-dimmer);
}

.site-footer a {
  color: var(--fg-dimmer);
  text-decoration: underline;
}

@media (max-width: 600px) {
  .grid, .grid-wide {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .hover-preview.portrait .polaroid-preview,
  .hover-preview.landscape .polaroid-preview {
    width: 82vw;
  }
}

.timeline {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
}

.timeline-item {
  display: flex;
  gap: 20px;
}

.timeline-marker {
  position: relative;
  flex: 0 0 auto;
  width: 9px;
}

.timeline-marker::before {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 0;
  left: 4px;
  width: 1px;
  background: var(--border);
}

.timeline-item:last-child .timeline-marker::before {
  display: none;
}

.timeline-dot {
  display: block;
  width: 9px;
  height: 9px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--beanfish);
}

.timeline-content {
  flex: 1;
  min-width: 0;
  padding-bottom: 32px;
}

.timeline-item:last-child .timeline-content {
  padding-bottom: 0;
}

.timeline-year {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--fg-dimmer);
  margin-bottom: 4px;
}

.timeline-title {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
}

.timeline-title a {
  position: relative;
  color: var(--fg);
  text-decoration: none;
}

.timeline-title a:hover {
  color: var(--beanfish);
}

.external-icon {
  width: 12px;
  height: 12px;
  margin-left: 5px;
  vertical-align: -1px;
  flex-shrink: 0;
}

.timeline-who {
  font-size: 12px;
  color: var(--fg-dim);
  font-style: italic;
  margin: 0 0 8px;
}

.timeline-desc {
  font-size: 13px;
  color: var(--fg-dim);
  margin: 0;
}

.timeline-stack {
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-dimmer);
  margin: 10px 0 0;
}

.apple-music-embed {
  margin: 8px 0 24px;
  display: flex;
  justify-content: center;
}

.apple-music-embed iframe {
  border: 1px solid var(--border);
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 28px 0;
}

.blog-item {
  display: flex;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.blog-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.blog-item-cover {
  flex: 0 0 140px;
  display: block;
  border-radius: 4px;
  overflow: hidden;
}

.blog-item-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-item-content {
  flex: 1;
  min-width: 0;
}

.blog-item-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
}

.blog-item-title a {
  color: var(--fg);
  text-decoration: none;
}

.blog-item-title a:hover {
  color: var(--beanfish);
}

.back-link {
  margin-top: 40px;
  font-size: 13px;
}

.back-link a {
  color: var(--fg-dim);
  text-decoration: none;
}

.back-link a:hover {
  color: var(--beanfish);
}
