.stage-collage {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 240px;
  gap: 14px;
}

.stage-visual {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  margin: 0;
  background: var(--surface-2);
}

.stage-visual:first-child {
  grid-column: span 8;
  grid-row: span 2;
}

/* Was written for a 5th (edcPoster) tile that no longer sits in this grid - the EDC flyers moved
   to their own strip below (.stage-edc). With 4 items, nth-child(4) is now always the trailing
   one and the old span:6 left it alone in a half-empty row (6 of 12 columns unused). Spanning the
   full row instead reads as a deliberate closing banner rather than a layout gap. */
.stage-visual:nth-child(4):last-child {
  grid-column: span 12;
}

/* position:absolute + inset:0, matching .music-hero img and .network-photo img elsewhere in this
   file - NOT the previous width/height:100% on a normal-flow child. That pattern only works when
   the parent's `height` is explicitly set; .stage-visual only ever carries `min-height`, and a
   percentage height on an in-flow child resolves against nothing when the parent's height is
   'auto' (CSS2.1 10.5) - min-height does not count as "specified". The browser then fell back to
   the image's own intrinsic ratio at 100% width, so object-fit:cover had no box to cover INTO:
   a landscape photo rendered short of its box (measured 2026-08-26: a 420px box held a 231px-tall
   image, 189px of bare background showing under it) while a very tall poster stretched its box to
   752px instead of being cropped. Absolute positioning resolves against the parent's actual final
   height regardless of whether that height came from `height` or `min-height`, which is exactly
   why the other two hero images never had this bug. */
.stage-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2, .7, .2, 1);
}

.stage-visual:first-child img { object-position: center 45%; }
.stage-visual:hover img { transform: scale(1.035); }

.stage-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(21, 21, 21, .9), transparent 58%);
  border: 1px solid rgba(255, 255, 255, .12);
}

.stage-visual figcaption {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  color: #fff;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.stage-visual figcaption span { color: var(--accent); }

/* EDC Korea flyers: shown whole, never cropped. The box is set to the flyer's own 4:5 ratio
   (1080x1350), so object-fit:cover here crops literally nothing - it's specified only so a
   slow-loading image reserves its box instead of collapsing to 0 height. The caption sits below
   the artwork, not over it, because these two flyer designs put their own critical text in
   different places (top-left in 2025, bottom in 2026) - a caption overlay safe for one would sit
   on top of text in the other. */
.stage-collage + .stage-edc { margin-top: 14px; }
.stage-edc-row { display: flex; gap: 14px; }
.stage-edc-item { flex: 0 0 auto; width: 192px; margin: 0; }
.stage-edc-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--surface-2);
}
.stage-edc-item figcaption {
  margin-top: 8px;
  color: var(--ink);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.stage-edc-item figcaption strong { display: block; }
.stage-edc-item figcaption span { display: block; margin-top: 2px; color: var(--accent); font-weight: 700; }

.career-layout {
  display: grid;
  grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: start;
  margin-top: clamp(62px, 9vw, 110px);
}

.career-copy {
  position: sticky;
  top: 120px;
}

.career-copy p {
  margin: 0;
  color: #aaa8ae;
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  line-height: 1.7;
  word-break: keep-all;
}

.career-copy::before {
  content: "LIVE / WORLDWIDE";
  display: block;
  margin-bottom: 22px;
  color: var(--accent);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .16em;
}

.gig-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  counter-reset: gig;
}

.gig-list li {
  counter-increment: gig;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  color: #aaa8ae;
  font-size: .92rem;
  line-height: 1.55;
}

.gig-list li::before {
  content: counter(gig, decimal-leading-zero);
  color: var(--accent);
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding-top: 4px;
}

.gig-list li:first-child,
.gig-list li:nth-child(2),
.gig-list li:nth-child(3) { color: #fff; }

.music-hero {
  position: relative;
  min-height: min(64vw, 710px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-bottom: 14px;
}

.music-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

.music-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 21, 21, .95), rgba(21, 21, 21, .2) 68%),
    linear-gradient(0deg, rgba(21, 21, 21, .76), transparent 50%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.music-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: clamp(28px, 6vw, 74px);
}

.music-hero-copy p {
  margin: 0;
  color: #d3d1d5;
  font-size: clamp(1.12rem, 2.3vw, 1.6rem);
  line-height: 1.65;
  word-break: keep-all;
}

.music-hero-copy strong {
  display: block;
  margin-bottom: 20px;
  color: var(--accent);
  font-size: .63rem;
  letter-spacing: .18em;
}

.music-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.list-panel {
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .022);
}

.list-panel h3,
.release-heading {
  margin: 0 0 32px;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  letter-spacing: -.045em;
}

.number-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: item;
  border-top: 1px solid var(--line);
}

.number-list li {
  counter-increment: item;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: #a5a3aa;
  font-size: .82rem;
  line-height: 1.55;
}

.number-list li::before {
  content: counter(item, decimal-leading-zero);
  color: var(--accent);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding-top: 3px;
}

.release-block { margin-top: clamp(62px, 9vw, 100px); }

.release-heading {
  display: flex;
  align-items: center;
  gap: 18px;
}

.release-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.release-card {
  min-height: 176px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--surface);
}

.release-card time {
  color: var(--accent);
  font-size: .58rem;
  font-weight: 720;
  letter-spacing: .11em;
}

.release-card strong {
  margin: 26px 0 10px;
  font-size: 1.05rem;
  line-height: 1.2;
  letter-spacing: -.025em;
}

.release-card span {
  margin-top: auto;
  color: #79777e;
  font-size: .7rem;
  line-height: 1.45;
}

.network-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  min-height: 650px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.network-photo {
  position: relative;
  min-height: 470px;
  overflow: hidden;
}

.network-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
}

.network-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 56%, var(--surface)), linear-gradient(0deg, rgba(21, 21, 21, .38), transparent);
}

.network-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 6vw, 70px);
}

.network-copy h3 {
  margin: 0 0 28px;
  color: var(--accent);
  font-size: .63rem;
  letter-spacing: .16em;
}

.name-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 14px;
}

.name-cloud span {
  color: #d1cfd3;
  font-size: clamp(.88rem, 1.55vw, 1.17rem);
  font-weight: 700;
  letter-spacing: -.02em;
}

.label-block {
  display: grid;
  grid-template-columns: minmax(220px, .55fr) minmax(0, 1.45fr);
  gap: 44px;
  margin-top: 64px;
  align-items: start;
}

.label-block h3 {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2.35rem);
  letter-spacing: -.045em;
}

.label-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.label-cloud span {
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #9b99a0;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.contact-section {
  overflow: hidden;
  background: linear-gradient(90deg, var(--surface) 0%, var(--bg) 72%);
}

.contact-section::before {
  content: "CONTACT";
  position: absolute;
  left: -2vw;
  bottom: -1.5vw;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242, 17, 44, .18);
  font-family: "Archivo", "Pretendard", sans-serif;
  font-size: clamp(7rem, 19vw, 19rem);
  line-height: .72;
  letter-spacing: -.08em;
  pointer-events: none;
}

.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: clamp(44px, 8vw, 110px);
  align-items: end;
}

.contact-lead {
  max-width: 650px;
  margin: 28px 0 48px;
  color: #aaa8ae;
  font-size: clamp(1rem, 2vw, 1.32rem);
  line-height: 1.75;
  word-break: keep-all;
}

.contact-channels {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  min-width: 0;
  max-width: 640px;
}

.contact-channel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  min-width: 0;
  padding: 22px 54px 22px 0;
  border-top: 1px solid var(--line);
  color: #fff;
  text-decoration: none;
  transition: border-color .2s;
}

.contact-channel:last-child { border-bottom: 1px solid var(--line); }
.contact-channel:hover { border-color: var(--accent); }

.contact-channel::after {
  content: "↗";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.1rem;
}

.channel-label {
  min-width: 0;
  color: var(--accent);
  font-family: "Archivo", "Pretendard", sans-serif;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  word-break: keep-all;
}

/* Each half of the address is unbreakable; the wrap can only happen at "@". */
.channel-address {
  min-width: 0;
  font-size: clamp(1.28rem, 3.5vw, 2.45rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.045em;
  word-break: normal;
  overflow-wrap: normal;
}

.channel-address .mail-part { white-space: nowrap; }

.channel-note {
  min-width: 0;
  color: #aaa8ae;
  font-size: .84rem;
  line-height: 1.6;
  word-break: keep-all;
}

.contact-links {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.contact-links li { border-bottom: 1px solid var(--line); }

.contact-links a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  color: #aaa8ae;
  text-decoration: none;
  font-size: .71rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.contact-links a::after { content: "↗"; color: var(--accent); }
.contact-links a:hover { color: #fff; }

.site-footer {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 100px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #66646b;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .12em;
}

@media (max-width: 900px) {
  .stage-collage { grid-auto-rows: 210px; }
  .stage-visual,
  .stage-visual:first-child { grid-column: span 6; grid-row: span 1; }
  /* Same reasoning as the desktop rule above: 4 items now, so the trailing one takes the full row
     instead of leaving half of it empty. */
  .stage-visual:nth-child(4):last-child { grid-column: span 12; grid-row: span 1; }
  .stage-visual:first-child { grid-column: span 12; grid-row: span 2; }
  .career-layout,
  .label-block { grid-template-columns: 1fr; }
  .career-copy { position: static; }
  .music-columns { grid-template-columns: 1fr; }
  .release-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .network-stage { grid-template-columns: 1fr; }
  .network-photo::after { background: linear-gradient(0deg, var(--surface), transparent 58%); }
  .contact-layout { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 560px) {
  .stage-collage { display: block; }
  .stage-visual { min-height: 280px; margin-bottom: 10px; }
  .stage-visual:first-child { min-height: 420px; }
  .music-hero { min-height: 590px; }
  .music-hero::after { background: linear-gradient(0deg, rgba(21, 21, 21, .96), rgba(21, 21, 21, .14) 75%); }
  .release-grid { grid-template-columns: 1fr; }
  .release-card { min-height: 148px; }
  .network-stage { min-height: auto; }
  .network-photo { min-height: 410px; }
  .channel-address { font-size: 1.32rem; }
  .contact-channel { padding-right: 40px; }
  .site-footer { flex-direction: column; margin-top: 74px; }
  /* 192px items would run to ~398px including the gap - wider than the ~347px content column
     measured on a 375px phone (2026-08-26). Sized down and allowed to wrap as a safety net for
     narrower devices still, rather than relying on shrinking alone. */
  .stage-edc-row { flex-wrap: wrap; gap: 10px; }
  .stage-edc-item { width: calc(50% - 5px); }
}

@media print {
  .role-card,
  .stage-visual,
  .list-panel,
  .release-card,
  .network-stage,
  .contact-layout { break-inside: avoid; }
  .career-copy { position: static; }
  .stage-collage { grid-auto-rows: 52mm; }
  .music-hero { min-height: 160mm; }
}
