/* ========================================
   Artist Block
   ======================================== */
.artists {
  padding: 100px 0;
  background: var(--white);
}

.artist-block {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: start;
}

.artist-block.reverse {
  grid-template-columns: 1fr 380px;
}

.artist-block.reverse .artist-visual {
  order: 2;
}

.artist-block.reverse .artist-info {
  order: 1;
}

/* Visual */
.artist-visual {
  position: relative;
}

.artist-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, var(--blue-light), var(--green-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-family: var(--font-en);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  overflow: hidden;
}

.artist-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-name-vertical {
  position: absolute;
  bottom: 24px;
  right: -20px;
  font-family: var(--font-en);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  writing-mode: vertical-rl;
  opacity: 0.5;
}

.artist-block.reverse .artist-name-vertical {
  right: auto;
  left: -20px;
}

/* Info */
.artist-info {
  padding-top: 16px;
}

.artist-label {
  font-family: var(--font-en);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--blue-accent);
  margin-bottom: 8px;
}

.artist-name {
  font-family: var(--font-en);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin-bottom: 4px;
}

.artist-name-ja {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 20px;
}

/* Tags */
.artist-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.artist-tag {
  font-size: 0.72rem;
  padding: 5px 14px;
  border-radius: 20px;
  background: var(--green-light);
  color: var(--green-accent);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.artist-tag:nth-child(2n) {
  background: var(--blue-light);
  color: var(--blue-accent);
}

/* Bio */
.artist-bio {
  margin-bottom: 24px;
}

.artist-bio p {
  font-size: 0.9rem;
  line-height: 2;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 12px;
}

.artist-bio p:last-child {
  margin-bottom: 0;
}

/* Quote */
.artist-quote {
  margin-bottom: 32px;
  padding-left: 20px;
  border-left: 3px solid var(--green);
}

.artist-quote blockquote {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--green-accent);
  line-height: 1.8;
  font-weight: 400;
}

/* Career */
.artist-career {
  margin-bottom: 28px;
}

.artist-career-title {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.artist-career-note {
  font-size: 0.68rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-left: 8px;
}

.artist-career ul {
  list-style: none;
}

.artist-career li {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 300;
  padding: 4px 0 4px 16px;
  position: relative;
}

.artist-career li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

/* Classes */
.artist-classes {
  margin-bottom: 28px;
}

.artist-class-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.artist-class-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--beige-light);
  padding: 12px 16px;
  border-radius: 10px;
}

.artist-class-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
}

.artist-class-time {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* Name Row (name + Instagram icon) */
.artist-name-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.artist-ig-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  transition: opacity 0.3s;
}

.artist-ig-link svg {
  width: 22px;
  height: 22px;
  fill: var(--text-muted);
  transition: fill 0.3s;
}

.artist-ig-link:hover svg {
  fill: var(--green-accent);
}

/* SNS */
.artist-sns {
  display: flex;
  gap: 12px;
}

.artist-sns-link {
  font-family: var(--font-en);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--blue-accent);
  padding: 8px 20px;
  border: 1px solid var(--blue);
  border-radius: 24px;
  transition: background 0.3s, color 0.3s;
}

.artist-sns-link:hover {
  background: var(--blue-accent);
  color: var(--white);
}

/* Highlights */
.artist-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.artist-highlight-item {
  background: var(--beige-light);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.artist-highlight-item.featured {
  background: linear-gradient(135deg, var(--green-light), var(--blue-light));
  border: 2px solid var(--green);
  grid-column: span 2;
  text-align: center;
  align-items: center;
  padding: 20px 18px;
}

.artist-highlight-item.gold {
  background: linear-gradient(135deg, #fdf8e8, #f7e7a0, #fdf8e8);
  border: 2px solid #c8a415;
  box-shadow: 0 3px 16px rgba(200, 164, 21, 0.18);
}

.artist-highlight-item.gold .artist-highlight-year {
  color: #9a7b00;
}

.artist-highlight-item.gold .artist-highlight-note {
  color: #9a7b00;
}

.artist-highlight-year {
  font-family: var(--font-en);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-accent);
  letter-spacing: 0.06em;
}

.artist-highlight-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}

.artist-highlight-item.featured .artist-highlight-text {
  font-size: 0.95rem;
  font-weight: 700;
}

.artist-highlight-note {
  font-size: 0.72rem;
  color: var(--green-accent);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Results Detail */
.artist-results {
  margin-bottom: 32px;
}

.artist-results-sub {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--blue-accent);
  letter-spacing: 0.06em;
  margin: 20px 0 12px;
  padding-left: 12px;
  border-left: 3px solid var(--blue);
}

.artist-results-category {
  margin-bottom: 16px;
}

.artist-results-region {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.artist-results-category ul {
  list-style: none;
}

.artist-results-category li {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 300;
  padding: 5px 0 5px 0;
  line-height: 1.6;
}

.artist-results-category li strong {
  color: #9a7b00;
  font-weight: 700;
  background: linear-gradient(135deg, #fdf8e8, #f7e7a0);
  padding: 1px 6px;
  border-radius: 4px;
}

.result-year {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue-accent);
  min-width: 80px;
  margin-right: 8px;
}

/* Divider */
.artist-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--green), transparent);
  margin: 80px 0;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 900px) {
  .artist-block,
  .artist-block.reverse {
    grid-template-columns: 300px 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .artists {
    padding: 60px 0;
  }

  .artist-block,
  .artist-block.reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .artist-block.reverse .artist-visual {
    order: 0;
  }

  .artist-block.reverse .artist-info {
    order: 0;
  }

  .artist-photo {
    aspect-ratio: 1 / 1;
    max-width: 320px;
    margin: 0 auto;
  }

  .artist-name-vertical {
    display: none;
  }

  .artist-block.reverse .artist-name-vertical {
    display: none;
  }

  .artist-info {
    padding-top: 0;
    text-align: center;
  }

  .artist-tags {
    justify-content: center;
  }

  .artist-quote {
    border-left: none;
    padding-left: 0;
    border-top: 2px solid var(--green);
    padding-top: 16px;
    text-align: center;
  }

  .artist-bio p {
    text-align: left;
  }

  .artist-career {
    text-align: left;
  }

  .artist-classes {
    text-align: left;
  }

  .artist-name-row {
    justify-content: center;
  }

  .artist-sns {
    justify-content: center;
  }

  .artist-highlights {
    grid-template-columns: 1fr;
  }

  .artist-highlight-item.featured {
    grid-column: span 1;
  }

  .artist-results {
    text-align: left;
  }

  .result-year {
    display: block;
    margin-bottom: 2px;
  }

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

  .artist-divider {
    margin: 48px 0;
  }

  .reserve-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .btn-reserve,
  .btn-tel {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .artist-name {
    font-size: 1.7rem;
  }

  .artist-class-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
