.profile {
  padding-block: clamp(112px, 14vw, 200px);
  background: #f5f5f3;
  scroll-margin-top: 96px;
}

.profile__inner {
  width: min(100% - 48px, 1120px);
  margin-inline: auto;
}

.profile__label {
  margin: 0 0 clamp(32px, 4vw, 48px);
  color: var(--color-text-sub);
  font-size: 12px;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.profile__layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}

.profile__image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  transition-delay: 0s;
}

.profile__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.profile__content {
  max-width: 560px;
  transition-delay: .15s;
}

.profile__name-ja {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: .04em;
}

.profile__name-en {
  margin-top: 8px;
  color: var(--color-text-sub);
  font-size: 13px;
  letter-spacing: .12em;
}

.profile__meta {
  margin-top: 32px;
  color: var(--color-text-sub);
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: .04em;
}

.profile__description {
  max-width: 34em;
  margin-top: clamp(32px, 4vw, 48px);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 2;
  letter-spacing: .03em;
}

.profile__description p + p { margin-top: 1.5em; }

.profile__link {
  display: inline-flex;
  align-items: center;
  gap: .65em;
  min-height: 44px;
  margin-top: 40px;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  letter-spacing: .1em;
  transition: opacity .25s var(--ease), border-color .25s var(--ease);
}

.profile__link:hover { opacity: .58; }
.portal--photo { margin-top: clamp(72px, 10vw, 140px); }

@media (max-width: 767px) {
  .profile__inner { width: min(100% - 40px, 1120px); }
  .profile__layout { grid-template-columns: 1fr; gap: 40px; }
  .profile__image { width: 100%; max-height: min(120vw, 560px); aspect-ratio: 5 / 6; }
  .profile__image img { object-position: center 38%; }
  .profile__name-ja { font-size: clamp(28px, 9vw, 38px); }
  .profile__description { font-size: 14px; line-height: 1.9; }
}

@media (max-width: 359px) {
  .profile__inner { width: calc(100% - 32px); }
}

@media (prefers-reduced-motion: reduce) {
  .profile__image,
  .profile__content { transition-delay: 0s; }
}
