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

:root {
  --accent: #7fb5c8;
  /* --accent: #c89470; */
}

body {
  background: #0f0f0f;
  color: #c4c4c4;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.75;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 180px 1fr;
  padding: 56px 60px 56px 160px;
}

/* ── Spine ── */

aside {
  position: sticky;
  top: 56px;
  align-self: start;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.site-name {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #c5c5c5;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: right;
  margin-bottom: 88px;
  text-decoration: none;
}

.site-name:hover {
  color: var(--accent);
}

/* Mobile-only short nav labels (e.g. "Biography" → "Bio") */
.short {
  display: none;
}



aside > nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

nav a {
  color: #787878;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 9px;
}

nav a:hover {
  color: var(--accent);
}

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

.bands-menu,
.socials {
  display: flex;
  flex-direction: column;
}

aside .bands-menu,
aside .socials {
  margin-top: 65px;
  align-items: flex-end;
}

.bands-menu a {
  color: #787878;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 9px;
}

.bands-menu a:hover {
  color: var(--accent);
}

.menu-title {
  display: block;
  font-size: 15px;
  color: #c5c5c5;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.socials a {
  color: #6a6a6a;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 9px;
}

.socials a:hover {
  color: var(--accent);
}

/* ── Content ── */

main {
  padding-left: 100px;
  padding-top: 72px;
  max-width: 600px;
}

/* ── Type components ── */

.label {
  font-size: 11px;
  color: #707070;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.body {
  color: #9e9e9e;
}

.body .en {
  display: block;
  margin-bottom: 8px;
}

.italic {
  display: block;
  font-style: italic;
  color: #787878;
  font-size: 13px;
  line-height: 1.7;
}

.italic-small {
  display: block;
  font-style: italic;
  color: #787878;
  font-size: 12px;
  line-height: 1.6;
  margin-top: 6px;
}

article + article,
section + section {
  margin-top: 88px;
}

/* News article media spacing */
article .disco-player {
  margin-top: 16px;
}

article .yt-embed {
  display: block;
  margin-top: 20px;
}

article .disco-player + .body,
article .yt-embed + .body {
  margin-top: 16px;
}

/* Pedagogy items (index) */
.pedagogy-label {
  margin-top: 20px;
  font-size: 12px;
  color: #707070;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pedagogy-thumb {
  display: block;
  margin-top: 8px;
  width: 400px;
  max-width: 100%;
  height: auto;
}

/* ── Release (index) ── */

.release-player {
  display: block;
  width: 250px;
  height: 250px;
  margin-bottom: 32px;
}

.cta {
  display: inline-block;
  margin-top: 28px;
  color: var(--accent);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── Language switch ── */

.lang-switch {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
}

.btn {
  display: inline-block;
  padding: 3px 8px;
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0.6;
  font-weight: 400;
}

.btn:hover {
  opacity: 1;
  background-color: rgba(127, 181, 200, 0.08);
}

.btn-active {
  opacity: 1;
  cursor: default;
}

.bottom-btn {
  margin-top: 16px;
}

/* ── Bio ── */

.bio-text p {
  color: #9e9e9e;
  margin-bottom: 24px;
  line-height: 1.8;
}

.bio-photo-stack {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bio-photo-stack figure:first-child img {
  height: 380px;
  width: auto;
  align-self: flex-start;
  display: block;
}

.bio-photo-stack figure:last-child img {
  height: auto;
  width: 570px;
  display: block;
}

.photocredits {
  font-size: 0.72rem;
  color: #555555;
  margin-top: 5px;
}

.bio-photos {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.bio-photos img {
  height: 380px;
  width: auto;
  object-fit: cover;
  display: block;
}

.bio-section {
  margin-top: 48px;
}

.bio-section p {
  color: #787878;
  font-size: 13px;
  line-height: 1.75;
}

/* ── Bands ── */

.band-photo {
  display: block;
  width: 516px;
  max-width: 100%;
  height: auto;
  margin-top: 12px;
}


.item-title {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #d0d0d0;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
  flex: 1;
  line-height: 1.5;
}


/* ── Blog post ── */

.post-body p {
  color: #9e9e9e;
  margin-bottom: 20px;
  line-height: 1.8;
}

.post-body h3 {
  color: #c0c0c0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 36px;
  margin-bottom: 14px;
}

.post-body a {
  color: var(--accent);
  text-decoration: none;
}

.post-body a:hover {
  text-decoration: underline;
}

.post-body img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 20px 0;
}

.post-body hr {
  border: 0;
  border-top: 1px solid #2a2a2a;
  margin: 40px 0;
}

.post-body em {
  color: #787878;
}

.post-subtitle {
  color: #787878;
  font-style: italic;
  font-size: 13px;
  margin-bottom: 28px;
}

.post-body .figure-center {
  text-align: center;
}

.post-body .figure-center img {
  margin-left: auto;
  margin-right: auto;
}

article + article.post {
  margin-top: 88px;
}

/* ── Discography ── */

.disco-section {
  margin-bottom: 60px;
}

.disco-year {
  margin-top: 4px;
  margin-bottom: 6px;
}

.disco-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-top: 7px;
}

.item-title .disco-role {
  font-size: 10px;
  color: #555555;
  letter-spacing: 0.06em;
  margin-right: 4px;
}

.disco-link {
  font-size: 10px;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.55;
  transition: opacity 0.15s;
  flex-shrink: 0;
}

.disco-link:hover {
  opacity: 1;
}

.disco-nolink {
  font-size: 10px;
  color: #3a3a3a;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.disco-discogs-note {
  margin-bottom: 32px;
}

.disco-discogs-note a {
  color: var(--accent);
  text-decoration: none;
  font-size: 12px;
  opacity: 0.7;
  transition: opacity 0.15s;
}

.disco-discogs-note a:hover {
  opacity: 1;
}

.disco-section + .disco-section {
  margin-top: 0;
}

.disco-player {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.disco-player iframe {
  border: 0;
  width: 250px;
  height: 250px;
  flex-shrink: 0;
}

.disco-player img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  display: block;
}

.disco-img-placeholder {
  width: 250px;
  height: 250px;
  background: #1a1a1a;
  flex-shrink: 0;
}

.disco-photos {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}

.disco-photos img {
  width: 117px;
  height: 117px;
  object-fit: cover;
  display: block;
}

/* ── Press ── */

.press-quote {
  color: #9e9e9e;
  margin-bottom: 10px;
}

.press-quote.italic {
  color: #787878;
}

.press-cite .italic-small,
.links-list .italic-small {
  margin-top: 2px;
}

.press-cite {
  margin-top: 22px;
  line-height: 1.7;
}

.press-meta {
  font-size: 12px;
  color: #787878;
}

.press-meta em {
  color: #9e9e9e;
  font-style: normal;
}

.press-meta a {
  color: var(--accent);
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-left: 4px;
}

.press-meta a:hover {
  opacity: 1;
}


/* ── Contact ── */

.form-box {
  background: #181818;
  padding: 32px 36px;
  margin-top: 28px;
  margin-right: -24px;
}

.form-box label {
  display: block;
  font-size: 11px;
  color: #707070;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.form-box input[type="email"] {
  display: block;
  width: 100%;
  background: #0f0f0f;
  border: 1px solid #2a2a2a;
  color: #c4c4c4;
  padding: 9px 12px;
  font-family: inherit;
  font-size: 13px;
  margin-bottom: 20px;
}

.form-box input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
}

.form-box input[type="submit"].btn {
  font-family: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.links-columns {
  margin-top: 32px;
  column-count: 2;
  column-gap: 40px;
}

.links-list {
  list-style: none;
  padding: 0;
}

.links-list li {
  margin-bottom: 8px;
  line-height: 1.55;
  break-inside: avoid;
}

.links-list a {
  color: var(--accent);
  text-decoration: none;
  font-size: 13px;
  opacity: 0.75;
}

.links-list a:hover {
  opacity: 1;
}

/* ── Footer (mobile only) ── */

footer {
  display: none;
}

/* ── Responsive ── */

@media (max-width: 768px) {
  body {
    display: block;
    padding: 100px 20px 32px;
    transition: padding-top 0.2s ease;
  }

  aside {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #0f0f0f;
    padding: 16px 20px 12px;
    align-items: stretch;
    margin-bottom: 0;
    transition: padding 0.2s ease;
  }

  .site-name {
    text-align: left;
    font-size: 14px;
    margin-bottom: 10px;
    transition: font-size 0.2s ease, margin-bottom 0.2s ease;
  }

  aside > nav {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 14px;
  }

  aside > nav a {
    margin-bottom: 0;
    transition: font-size 0.2s ease;
  }

  /* Swap long → short labels on mobile */
  aside > nav .long { display: none; }
  aside > nav .short { display: inline; }

  /* Scroll-shrink */
  body.scrolled {
    padding-top: 60px;
  }
  body.scrolled aside {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  body.scrolled .site-name {
    font-size: 11px;
    margin-bottom: 4px;
  }
  body.scrolled aside > nav a {
    font-size: 10px;
  }

  main {
    padding-left: 0;
    padding-top: 0;
    max-width: 100%;
  }

  /* Stack disco-player */
  .disco-player {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .disco-player iframe,
  .disco-player > img,
  .disco-img-placeholder,
  .disco-player > a img {
    width: 100%;
    max-width: 350px;
    height: auto;
  }

  .disco-player iframe {
    aspect-ratio: 1;
  }

  .disco-photos {
    flex-direction: row;
    width: 100%;
    max-width: 350px;
  }

  .disco-photos img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  /* YouTube embed fluid */
  article .yt-embed {
    width: 100%;
    max-width: 516px;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  /* Bio photos stack */
  .bio-photos {
    flex-direction: column;
  }

  .bio-photos img {
    height: auto;
    width: 100%;
    max-width: 400px;
  }

  .bio-photo-stack figure:first-child img,
  .bio-photo-stack figure:last-child img {
    height: auto;
    width: 100%;
    max-width: none;
  }

  /* Pedagogy thumb */
  .pedagogy-thumb {
    width: 100%;
    max-width: 400px;
  }

  /* Form */
  .form-box {
    margin-right: 0;
    padding: 24px;
  }

  /* Links single column */
  .links-columns {
    column-count: 1;
  }

  /* Footer shown on mobile only */
  footer {
    display: flex;
    flex-direction: column;
    margin-top: 64px;
    gap: 32px;
  }

  aside .bands-menu,
  aside .socials {
    display: none;
  }

  /* Tighter inter-article spacing */
  article + article,
  section + section {
    margin-top: 64px;
  }
}

@media (max-width: 480px) {
  body {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 24px;
  }

  article + article,
  section + section {
    margin-top: 48px;
  }
}
